Skip to content

Commit bcfde9a

Browse files
committed
[main]: update letter page; astro config changes
1 parent 11e0eed commit bcfde9a

File tree

4 files changed

+223
-239
lines changed

4 files changed

+223
-239
lines changed

astro.config.mjs

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,17 @@
11
import mdx from "@astrojs/mdx";
2-
import node from "@astrojs/node";
32
import react from "@astrojs/react";
43
import tailwind from "@astrojs/tailwind";
54
import { defineConfig } from "astro/config";
65

76
// https://astro.build/config
87
export default defineConfig({
98
site: "https://parixan.xyz",
10-
prefetch: true,
11-
output: "static",
9+
build: {
10+
format: "file"
11+
},
12+
prefetch: {
13+
prefetchAll: true
14+
},
1215
devToolbar: {
1316
enabled: false
1417
},
@@ -25,7 +28,6 @@ export default defineConfig({
2528
nesting: true
2629
})
2730
],
28-
adapter: node({ mode: "standalone" }),
2931
style: {
3032
global: true // Ensure global styles are applied
3133
},

0 commit comments

Comments
 (0)