1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/examples/with-style-sheet/next.config.js

19 lines
420 B
JavaScript
Raw Normal View History

const getCss = require('style-sheet/babel').getCss
const { RawSource } = require('webpack-sources')
class StyleSheetPlugin {
apply (compiler) {
compiler.plugin('emit', (compilation, cb) => {
compilation.assets['static/bundle.css'] = new RawSource(getCss())
cb()
})
}
}
module.exports = {
webpack: (config, options) => {
config.plugins.push(new StyleSheetPlugin())
return config
}
}