Skip to content

Commit 9d2651a

Browse files
authored
Add base URL (#6)
* Add base URL * Format code * Fixed favicon URL
1 parent 6df828b commit 9d2651a

File tree

3 files changed

+4
-1
lines changed

3 files changed

+4
-1
lines changed

.github/workflows/deploy-website.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ jobs:
1818
deploy-website:
1919
name: Deploy Website
2020

21+
if: github.actor != 'dependabot[bot]'
2122
runs-on: ubuntu-latest
2223

2324
environment:

astro.config.mjs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,5 +6,6 @@ import tailwind from "@astrojs/tailwind";
66
// https://astro.build/config
77
export default defineConfig({
88
site: "https://virtualbrainlab.github.io",
9+
base: "pinpoint-site",
910
integrations: [tailwind()],
1011
});

src/layouts/Layout.astro

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
<head>
66
<meta charset="UTF-8" />
77
<meta name="viewport" content="width=device-width" />
8-
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
8+
<!-- FIXME: Remove `pinpoint-site` once VBL URL is used. -->
9+
<link rel="icon" type="image/svg+xml" href="/pinpoint-site/favicon.ico"/>
910
<meta name="generator" content={Astro.generator} />
1011
<title>Pinpoint</title>
1112
</head>

0 commit comments

Comments
 (0)