summaryrefslogtreecommitdiff
path: root/webpack.config.js
diff options
context:
space:
mode:
authorDavid Mehren2018-10-08 10:05:13 +0200
committerDavid Mehren2018-10-10 22:09:46 +0200
commit9a2dcd40d37c01896deeae0c8059564b4bdd6dc1 (patch)
tree6515b561f393fc9eea6953e8aeaab0df40419ceb /webpack.config.js
parentc7478c1694be2b3b880b8d52f9c15d60832a06f8 (diff)
Rename Webpack config to official recommendation
Signed-off-by: David Mehren <dmehren1@gmail.com>
Diffstat (limited to 'webpack.config.js')
-rw-r--r--webpack.config.js41
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'
- })
- ]
-}]