rsnext/examples/with-style-sheet/next.config.js
Giuseppe c95abc209b Add with style-sheet example (#5572)
* Remove pathname (#5428)

Same as #5424

* fix typo (#5451)

* Add with style-sheet example

* Fix readme

* Fix typo
2018-11-01 14:05:39 +01:00

18 lines
420 B
JavaScript

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
}
}