change plugin order

This commit is contained in:
2026-09-02 23:38:37 +02:00
parent a87e27e03f
commit 24775870e2
+2 -2
View File
@@ -12,8 +12,8 @@ const config = defineConfig({
resolve: { tsconfigPaths: true }, resolve: { tsconfigPaths: true },
plugins: [ plugins: [
devtools(), devtools(),
nitro({ rollupConfig: { external: [/^@sentry\//] } }),
tailwindcss(), tailwindcss(),
viteReact(),
tanstackStart({ tanstackStart({
prerender: { prerender: {
enabled: true, enabled: true,
@@ -36,7 +36,7 @@ const config = defineConfig({
host: HOST_URL, host: HOST_URL,
}, },
}), }),
viteReact(), nitro({ rollupConfig: { external: [/^@sentry\//] } }),
], ],
}); });