Skip to content

Commit 0fe8676

Browse files
committed
del start command
1 parent 43f73e2 commit 0fe8676

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

apps/docs/package.json

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@
66
"scripts": {
77
"dev": "vite dev",
88
"build": "vite build",
9-
"start": "node .output/server/index.mjs",
109
"postinstall": "fumadocs-mdx",
1110
"lint": "biome check",
1211
"format": "biome format --write"

apps/docs/vite.config.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ export default defineConfig({
99
server: {
1010
port: 3000,
1111
},
12+
build: {
13+
outDir: '.output',
14+
},
1215
plugins: [
1316
mdx(await import('./source.config')),
1417
tailwindcss(),
@@ -18,7 +21,6 @@ export default defineConfig({
1821
tanstackStart({
1922
prerender: {
2023
enabled: true,
21-
2224
},
2325
}),
2426
react(),

0 commit comments

Comments
 (0)