Package Exports
- @modular-css/vite
- @modular-css/vite/vite.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@modular-css/vite) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@modular-css/vite

Vite support for modular-css.
Install
> npm i @modular-css/viteUsage
// vite.config.js
import mcss from "@modular-css/vite";
export default {
plugins : [
mcss()
]
};Options
include/exclude
A minimatch pattern, or an array of minimatch patterns, relative to process.cwd(). include defaults to **/*.css.
processor
Pass an already-instantiated Processor instance to the rollup plugin. It will then add any files found when traversing the modules to it and both the rollup-discovered and any already-existing files will be output in the final CSS.
Shared Options
All other options are passed to the underlying Processor instance, see the Processor Options.