WIP Checkpoint, spaghetti code!

This commit is contained in:
Shawn 2019-04-03 00:56:58 -05:00 committed by Shawn
parent 5ea7dde6f4
commit 63806845ca
25 changed files with 2113 additions and 859 deletions

View file

@ -5,6 +5,7 @@ const baseConfig = require('./webpack.base.config.js');
const CopyWebpackPlugin = require('copy-webpack-plugin');
const { DefinePlugin } = require('webpack');
const { getIfUtils, removeEmpty } = require('webpack-config-utils');
const { BundleAnalyzerPlugin } = require('webpack-bundle-analyzer');
const STATIC_ROOT = path.resolve(__dirname, 'static/');
const DIST_ROOT = path.resolve(__dirname, 'dist/');
@ -108,6 +109,7 @@ const renderConfig = {
],
},
plugins: [
// new BundleAnalyzerPlugin(),
new DefinePlugin({
IS_WEB: JSON.stringify(false),
}),