1.0.0-alpha.1 • Published 2 years ago

@master/css.aot v1.0.0-alpha.1

Weekly downloads
-
License
MIT
Repository
github
Last release
2 years ago

MIT License Latest Release Documentation Github Discord CI

On this page

webpack.config.js

const { MasterCSSWebpackPlugin } = require('@master/css.aot')

module.exports = {
    plugins: [
        new MasterCSSWebpackPlugin(),
        ...
    ],
    ...
};

next.config.js

const { MasterCSSWebpackPlugin } = require('@master/css.aot')

const nextConfig = {
    ...,
    webpack: (config) => {
        config.plugins.push(MasterCSSWebpackPlugin)
        return config
    }
}

module.exports = nextConfig

more to come...