Skip to content

Commit 38c59dc

Browse files
committed
Add trailing slash to base path in configs for consistent URL construction
1 parent 3b4db0b commit 38c59dc

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

sites/browserpod/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { resolve } from "node:path";
66
// https://astro.build/config
77
export default defineConfig({
88
site: "https://browserpod.io",
9-
base: "/docs",
9+
base: "/docs/",
1010
integrations: [
1111
icon(),
1212
theme({

sites/cheerpj/astro.config.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import { resolve } from "node:path";
66
// https://astro.build/config
77
export default defineConfig({
88
site: "https://cheerpj.com",
9-
base: "/docs",
9+
base: "/docs/",
1010
integrations: [
1111
icon(),
1212
theme({

0 commit comments

Comments
 (0)