next-plugin-elter
v1.0.0
Published
elter next.js plugin optimize the CSS Module
Downloads
67
Readme
next-plugin-elter
elter-site
Optimize redundant classnames in next CSSModule.
Installation
npm install --save-dev next-plugin-elter
Add the under to your next.config.ts
import type { NextConfig } from "next";
import configCSSModule from "next-plugin-elter";
const nextConfig: NextConfig = {
webpack: (config) => {
return configCSSModule(config);
},
};
export default nextConfig;