This is the block providing configuration for the extract-text-webpack-plugin. Use it to extract CSS styles out of the bundle and into a separate CSS file.
const { createConfig } = require('@webpack-blocks/webpack')
const extractText = require('@webpack-blocks/extract-text')
module.exports = createConfig([
...,
extractText(),
// or:
extractText('css/[name].css', 'text/css')
])
Check out the
Released under the terms of the MIT license.