vite support for modular-css
npm install @modular-css/viteVite support for modular-css.
``shell`
> npm i @modular-css/vite
`javascript
// vite.config.js
import mcss from "@modular-css/vite";
export default {
plugins : [
mcss()
]
};
`
A minimatch pattern, or an array of minimatch patterns, relative to process.cwd(). include defaults to */.css.
Pass an already-instantiated Processor instance to the vite plugin. It will then add any files found when traversing the modules to it and both the vite-discovered and any already-existing files will be output in the final CSS.
#### styleExport
You can disable returning the style string, eg import { styles } from "./style.css";, by setting styleExport to false. Defaults to true.
#### defaultExport
You can disable exporting classes as default export, eg import styles from "./style.css";, by setting defaultExport to false. Defaults to true.
#### variableDeclaration
You can set variable declaration kind, eg var mc_rule = ...;, by setting variableDeclaration to var. Defaults to const.
All other options are passed to the underlying Processor` instance, see the Processor Options.