We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 967fbd3 commit a7589c7Copy full SHA for a7589c7
3 files changed
package.json
@@ -9,7 +9,7 @@
9
"dev": "pnpm run with-env vite dev",
10
"with-env": "dotenv -e .env -e .env.local",
11
"dev:frontend": "pnpm run with-env vite dev",
12
- "build": "vite build && node scripts/finalize-build.mjs",
+ "build": "vite build",
13
"start": "vite start",
14
"start:prod": "pnpm run with-env node scripts/run-built-server.mjs",
15
"lint": "oxlint --type-aware",
scripts/finalize-build.mjs
vite.config.ts
@@ -199,9 +199,7 @@ export default defineConfig({
199
},
200
201
}),
202
- rsc({
203
- cssLinkPrecedence: false,
204
- }),
+ rsc(),
205
// Only enable Netlify plugin during build or when NETLIFY env is set
206
...(process.env.NETLIFY || process.env.NODE_ENV === 'production'
207
? [netlify()]
0 commit comments