modified template

Signed-off-by: Pascal Syma <pascal@syma.dev>
This commit is contained in:
2020-05-18 12:59:59 +02:00
parent 01939b8ed8
commit 4a22dbe657
10 changed files with 118 additions and 45 deletions
+7 -2
View File
@@ -1,3 +1,8 @@
/*
* Copyright (c) 2020. Pascal Syma <pascal@syma.dev>
* All rights reserved.
*/
const webpack = require("webpack");
const path = require("path");
const HtmlWebpackPlugin = require("html-webpack-plugin");
@@ -41,8 +46,8 @@ module.exports = {
logo: './public/favicon.png',
publicPath: "./",
favicons: {
appName: 'coop-platformer',
appDescription: 'Phaser3 Template',
appName: 'mi2mario',
appDescription: 'MI2Mario',
developerName: 'Pascal Syma',
developerURL: "https://syma.dev",
background: '#000',
+25 -20
View File
@@ -1,27 +1,32 @@
/*
* Copyright (c) 2020. Pascal Syma <pascal@syma.dev>
* All rights reserved.
*/
const merge = require("webpack-merge");
const path = require("path");
const base = require("./base");
const TerserPlugin = require("terser-webpack-plugin");
module.exports = merge(base, {
mode: "production",
output: {
filename: "bundle.min.js"
},
devtool: false,
performance: {
maxEntrypointSize: 900000,
maxAssetSize: 900000
},
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
output: {
comments: false
}
}
})
]
}
mode: "production",
output: {
filename: "bundle.min.js"
},
devtool: false,
performance: {
maxEntrypointSize: 900000,
maxAssetSize: 900000
},
optimization: {
minimizer: [
new TerserPlugin({
terserOptions: {
output: {
comments: false
}
}
})
]
}
});