Compare commits

..
3 Commits
Author SHA1 Message Date
owenrees 24775870e2 change plugin order 2026-09-02 23:38:37 +02:00
owenrees a87e27e03f undo inline css in prod 2026-09-02 23:02:00 +02:00
owenrees 6d2ba636ad inline css in prod 2026-09-02 23:00:03 +02:00
+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\//] } }),
], ],
}); });