Skip to content

Commit 75f44e9

Browse files
committed
fix astro build settings
1 parent 3d92d45 commit 75f44e9

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

astro.config.mjs

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,15 @@ import relativeLinks from "astro-relative-links";
99

1010
// https://astro.build/config
1111
export default defineConfig({
12+
trailingSlash: "never",
13+
build: {
14+
format: "file",
15+
},
1216
integrations: [react(), relativeLinks()],
13-
1417
vite: {
1518
plugins: [tailwindcss()],
1619
css: {
1720
transformer: "lightningcss",
1821
},
1922
},
20-
});
23+
});

0 commit comments

Comments
 (0)