- npm updates

- add favicon via template
- add popup.service.ts
This commit is contained in:
Arno Kaimbacher 2021-08-26 13:35:14 +02:00
parent bc44385846
commit 72cc5241af
9 changed files with 135 additions and 122 deletions

View file

@ -30,7 +30,7 @@ module.exports = {
path: path.resolve(__dirname, 'dist'),
filename: '[name].' + fileNamePrefix + 'js',
//filename: fileNamePrefix + '[name].js', // css loader will process all @import and url() with help of require()
publicPath: '/dist/',
// publicPath: '/dist/',
// sourceMapFilename: "[name].js.map"
},
@ -110,7 +110,8 @@ module.exports = {
// },
{
test: /\.html$/,
exclude: /node_modules/,
// exclude: [/node_modules/],
include: path.resolve(__dirname, 'src/app'),
use: {
loader: 'raw-loader',
options: {
@ -178,10 +179,10 @@ module.exports = {
compress: {
directives: false,
// drop_console: true,
// drop_debugger: true,
// keep_classnames: false,
// keep_fnames: false,
// drop_console: true,
// drop_debugger: true,
// keep_classnames: false,
// keep_fnames: false,
},
mangle: true, // Note `mangle.properties` is `false` by default.
keep_classnames: false,
@ -192,14 +193,14 @@ module.exports = {
},
plugins: [
new MiniCssExtractPlugin({ // Make sure MiniCssExtractPlugin instance is included in array before the PurifyCSSPlugin
// Options similar to the same options in webpackOptions.output
// both options are optional
// filename: '[name].css',
// chunkFilename: '[id].css',
filename: '[name].css',
chunkFilename: '[chunkhash].css',
}),
// new MiniCssExtractPlugin({ // Make sure MiniCssExtractPlugin instance is included in array before the PurifyCSSPlugin
// // Options similar to the same options in webpackOptions.output
// // both options are optional
// // filename: '[name].css',
// // chunkFilename: '[id].css',
// filename: '[name].css',
// chunkFilename: '[chunkhash].css',
// }),
]
};