Skip to content

Commit

Permalink
fix(web): href to new url
Browse files Browse the repository at this point in the history
  • Loading branch information
jojobii-arks committed Apr 15, 2023
1 parent 99d055a commit 1cac735
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 19 deletions.
3 changes: 1 addition & 2 deletions web/astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,5 @@ import mdx from '@astrojs/mdx';
// https://astro.build/config
export default defineConfig({
integrations: [tailwind(), mdx()],
site: 'https://jojobii.github.io/',
base: '/nt-ngs-log-observer',
site: 'https://ngs-logs.arks.moe/',
});
26 changes: 9 additions & 17 deletions web/src/components/Core.astro
Original file line number Diff line number Diff line change
@@ -1,23 +1,15 @@
---
import favicon32 from '/favicon-32x32.png';
import favicon16 from '/favicon-16x16.png';
import faviconIco from '/favicon.ico';
---

<html lang="en">
<head>
<meta charset="utf-8" />
<link
rel="icon"
type="image/png"
sizes="32x32"
href="/ngs-log-observer/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="/ngs-log-observer/favicon-16x16.png"
/>
<link
rel="shortcut icon"
href="/ngs-log-observer/favicon.ico"
type="image/x-icon"
/>
<link rel="icon" type="image/png" sizes="32x32" href={favicon32} />
<link rel="icon" type="image/png" sizes="16x16" href={favicon16} />
<link rel="shortcut icon" href={faviconIco} type="image/x-icon" />
<meta name="viewport" content="width=device-width" />
<meta name="generator" content={Astro.generator} />
<title>NGS Log Observer</title>
Expand Down

0 comments on commit 1cac735

Please sign in to comment.