esifycss-webpack-plugin
v0.1.3
Published
[![Test](https://github.com/kei-ito/esifycss-webpack-plugin/actions/workflows/test.yml/badge.svg)](https://github.com/kei-ito/esifycss-webpack-plugin/actions/workflows/test.yml) [![codecov](https://codecov.io/gh/kei-ito/esifycss-webpack-plugin/branch/mast
Downloads
2
Readme
esifycss-webpack-plugin
This plugin adds a resolver for EsifyCSS.
The resolver resolves *.module.css
to *.modules.css.js
or *.modules.css.ts
.
Usage
Add this plugin to your webpack.config.js
.
const EsifyCSSWebpackPlugin = require('esifycss-webpack-plugin');
module.exports = {
...{}, // other configurations
plugins: [
new EsifyCSSWebpackPlugin(),
],
};