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

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