1f575b2bc0
SSR was causing weird issues where error pages would flash because the user wasn't logged in. I'm disabling it for now, but I will eventually look into ways to fix the issue and re-enable it.
28 lines
448 B
TypeScript
28 lines
448 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2024-04-03",
|
|
devtools: { enabled: false },
|
|
|
|
css: ["~/assets/core.scss"],
|
|
postcss: {
|
|
plugins: {
|
|
tailwindcss: {},
|
|
autoprefixer: {},
|
|
},
|
|
},
|
|
|
|
app: {
|
|
head: {
|
|
link: [{ rel: "icon", href: "/favicon.ico" }],
|
|
},
|
|
},
|
|
|
|
nitro: {
|
|
experimental: {
|
|
websocket: true,
|
|
},
|
|
},
|
|
|
|
ssr: false,
|
|
});
|