added tests, not yet working

This commit is contained in:
2019-04-20 16:36:44 +02:00
parent 2e7553b70c
commit 74a823ad26
9 changed files with 1461 additions and 96 deletions

View File

@@ -1,4 +1,5 @@
const BundleTracker = require("webpack-bundle-tracker");
const nodeExternals = require("webpack-node-externals");
module.exports = {
publicPath: "http://localhost:8080/",
@@ -6,6 +7,8 @@ module.exports = {
chainWebpack: config => {
config.devtool = "inline-cheap-module-source-map",
config.externals = [nodeExternals()],
config.optimization
.splitChunks(false)