Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -27,20 +27,20 @@
<meta name="author" content="AOSSIE" />
<meta name="robots" content="index, follow" />

<link rel="canonical" href="https://aossie-org.github.io/OrgExplorer/" />
<link rel="canonical" href="https://orgexplorer.aossie.org/" />
Comment thread
coderabbitai[bot] marked this conversation as resolved.

<link
rel="icon"
type="image/svg+xml"
href="/OrgExplorer/org-explorer-logo.svg"
href="/org-explorer-logo.svg"
/>
<link rel="apple-touch-icon" href="/OrgExplorer/org-explorer-logo.png" />
<link rel="apple-touch-icon" href="/org-explorer-logo.png" />

<meta property="og:type" content="website" />

<meta
property="og:url"
content="https://aossie-org.github.io/OrgExplorer/"
content="https://orgexplorer.aossie.org/"
/>

<meta
Expand All @@ -55,7 +55,7 @@

<meta
property="og:image"
content="https://aossie-org.github.io/OrgExplorer/og-image.png"
content="https://orgexplorer.aossie.org/og-image.png"
/>

<meta name="twitter:card" content="summary_large_image" />
Expand All @@ -72,7 +72,7 @@

<meta
name="twitter:image"
content="https://aossie-org.github.io/OrgExplorer/og-image.png"
content="https://orgexplorer.aossie.org/og-image.png"
/>

<link rel="preconnect" href="https://api.github.com" />
Expand All @@ -83,11 +83,11 @@
"@context": "https://schema.org",
"@type": "WebApplication",
"name": "OrgExplorer",
"url": "https://aossie-org.github.io/OrgExplorer/",
"url": "https://orgexplorer.aossie.org/",
"applicationCategory": "DeveloperApplication",
"operatingSystem": "Any",
"description": "GitHub organization analytics platform for repository insights, contributor intelligence, governance metrics, and visual analytics.",
"image": "https://aossie-org.github.io/OrgExplorer/og-image.png",
"image": "https://orgexplorer.aossie.org/og-image.png",
"creator": {
"@type": "Organization",
"name": "AOSSIE"
Expand Down
2 changes: 1 addition & 1 deletion public/robots.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
User-agent: *
Allow: /

Sitemap: https://aossie-org.github.io/OrgExplorer/sitemap.xml
Sitemap: https://orgexplorer.aossie.org/sitemap.xml
2 changes: 1 addition & 1 deletion public/sitemap.xml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<?xml version="1.0" encoding="UTF-8"?>
<urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9">
<url>
<loc>https://aossie-org.github.io/OrgExplorer/</loc>
<loc>https://orgexplorer.aossie.org/</loc>
<changefreq>weekly</changefreq>
<priority>1.0</priority>
</url>
Expand Down
2 changes: 1 addition & 1 deletion src/main.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import './styles/global.css'

ReactDOM.createRoot(document.getElementById('root')).render(
<React.StrictMode>
<BrowserRouter basename={import.meta.env.PROD ? "/OrgExplorer" : "/"}>
<BrowserRouter basename= "/">
<App />
</BrowserRouter>
</React.StrictMode>
Expand Down
2 changes: 1 addition & 1 deletion vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ import tailwindcss from "@tailwindcss/vite";
export default defineConfig(({ mode }) => ({
plugins: [react(), tailwindcss()],

base: mode === "production" ? "/OrgExplorer/" : "/",
base: "/",
}));
Loading