fix: deprecation warning from scss

This commit is contained in:
PandaDEV 2024-11-15 20:56:35 +10:00
parent 0f9c71b118
commit 32a43c6c2d
No known key found for this signature in database
GPG key ID: 13EFF9BAF70EE75C

View file

@ -2,5 +2,14 @@
export default defineNuxtConfig({ export default defineNuxtConfig({
devtools: { enabled: false }, devtools: { enabled: false },
compatibilityDate: "2024-07-04", compatibilityDate: "2024-07-04",
ssr: false ssr: false,
}) vite: {
css: {
preprocessorOptions: {
scss: {
api: "modern-compiler",
},
},
},
},
});