UNPKG

extract-stilr-webpack-plugin

Version:
19 lines (17 loc) 363 B
var ExtractStilrPlugin = require('../index'); module.exports = { context: __dirname, entry: { main: './entryWithoutStilrStylesheet' }, output: { path: __dirname + '/dist', filename: 'withoutStilrStylesheet.js', libraryTarget: 'umd' }, plugins: [ new ExtractStilrPlugin({ filename: 'withoutStilrStylesheet.css' }) ] };