mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
19 lines
420 B
JavaScript
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
|
||
|
}
|
||
|
}
|