You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: packages/vuetify-nuxt-module/src/types.ts
+10-4Lines changed: 10 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -249,14 +249,20 @@ export interface MOptions {
249
249
configFile: string
250
250
}
251
251
/**
252
-
* The module will add `vuetify/styles` in Nuxt `css` by default.
252
+
* Disable the modern SASS compiler and API.
253
253
*
254
-
* If you want to add custom styles, you should enable this flag to avoid registering `vuetify/styles`.
254
+
* The module will check for `sass-embedded` dev dependency:
255
+
* - if `disableModernSassCompiler` is enabled, the module will configure the legacy SASS compiler.
256
+
* - if `sass-embedded` dependency is installed, the module will configure the modern SASS compiler.
257
+
* - otherwise, the module will configure the modern SASS API and will enable [preprocessorMaxWorkers](https://vitejs.dev/config/shared-options.html#css-preprocessormaxworkers), only if not configured from user land.
0 commit comments