mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
c95abc209b
* Remove pathname (#5428) Same as #5424 * fix typo (#5451) * Add with style-sheet example * Fix readme * Fix typo
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
|
|
}
|
|
}
|