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
1 change: 1 addition & 0 deletions .github/workflows/deploy-website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ jobs:
deploy-website:
name: Deploy Website

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

environment:
Expand Down
1 change: 1 addition & 0 deletions astro.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -6,5 +6,6 @@ import tailwind from "@astrojs/tailwind";
// https://astro.build/config
export default defineConfig({
site: "https://virtualbrainlab.github.io",
base: "pinpoint-site",
integrations: [tailwind()],
});
3 changes: 2 additions & 1 deletion src/layouts/Layout.astro
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,8 @@
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width" />
<link rel="icon" type="image/svg+xml" href="/favicon.ico" />
<!-- FIXME: Remove `pinpoint-site` once VBL URL is used. -->
<link rel="icon" type="image/svg+xml" href="/pinpoint-site/favicon.ico"/>
<meta name="generator" content={Astro.generator} />
<title>Pinpoint</title>
</head>
Expand Down
Loading