diff options
author | Christoph (Sheogorath) Kern | 2018-10-10 23:38:13 +0200 |
---|---|---|
committer | GitHub | 2018-10-10 23:38:13 +0200 |
commit | bf525e43d4b1806b0a99f7c145a16087de7438fa (patch) | |
tree | bcb2a81120b3754e819db654ef7a5d7c7051d884 /webpack.config.js | |
parent | c7478c1694be2b3b880b8d52f9c15d60832a06f8 (diff) | |
parent | 7eed584c0197d0b5a93f58f8b645c0b84588d8e1 (diff) |
Merge pull request #1007 from davidmehren/webpack-4
Webpack 4 refactor & docs
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 3c7c727e..00000000 --- a/webpack.config.js +++ /dev/null @@ -1,41 +0,0 @@ -var baseConfig = require('./webpackBaseConfig') -const MiniCssExtractPlugin = require('mini-css-extract-plugin') -var path = require('path') - -module.exports = [Object.assign({}, baseConfig, { - plugins: baseConfig.plugins.concat([ - new MiniCssExtractPlugin({ - filename: '[name].css', - chunkFilename: '[id].css' - }) - - ]), - devtool: 'source-map' -}), { - devtool: 'source-map', - entry: { - htmlExport: path.join(__dirname, 'public/js/htmlExport.js') - }, - module: { - rules: [{ - test: /\.css$/, - use: ['style-loader', 'css-loader'] - }, { - test: /\.scss$/, - use: ['style-loader', 'sass-loader'] - }, { - test: /\.less$/, - use: ['style-loader', 'less-loader'] - }] - }, - output: { - path: path.join(__dirname, 'public/build'), - publicPath: '/build/', - filename: '[name].js' - }, - plugins: [ - new MiniCssExtractPlugin({ - filename: 'html.min.css' - }) - ] -}] |