GeotiefExplore/webpack.config.js

173 lines
5.5 KiB
JavaScript
Raw Normal View History

2020-11-12 12:44:48 +00:00
require('dotenv').config();
const path = require('path');
const webpack = require('webpack'); //e.g. for iusing DefinePlugin
// const UglifyJsPlugin = require('uglifyjs-webpack-plugin');
const TerserPlugin = require('terser-webpack-plugin');
const MiniCssExtractPlugin = require("mini-css-extract-plugin");
// https://www.sitepoint.com/es6-babel-webpack/
/**
* flag Used to check if the environment is production or not
*/
const isProduction = (process.env.NODE_ENV === 'production');
const devMode = (process.env.NODE_ENV !== 'production');
/**
* Include hash to filenames for cache busting - only at production
*/
const fileNamePrefix = isProduction ? '[chunkhash].' : '';
module.exports = {
// mode: process.env.NODE_ENV,
2020-11-12 12:44:48 +00:00
context: __dirname,
entry: './src/js/main.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: '[name].js',
//filename: fileNamePrefix + '[name].js',
publicPath: '/dist/',
},
module: {
rules: [
{
test: /\.(svg|eot|ttf|woff|woff2)$/,
loader: 'url-loader',
options: {
limit: 10000,
name: 'fonts/[name].[ext]'
}
},
// {
// test: /\.(png|jpg|gif)$/,
// loaders: [
// {
// loader: 'url-loader',
// options: {
// limit: 10000,
// name: 'images/[name].[ext]'
// }
// },
// 'img-loader'
// ],
// },
2020-11-12 12:44:48 +00:00
{
test: /\.js$/,
exclude: /(node_modules|bower_components)/,
use: {
loader: 'babel-loader',
options: {
presets: ['@babel/preset-env']
}
}
},
{
test: /\.(less|css)$/,
use: [
{
loader: (isProduction === true) ? MiniCssExtractPlugin.loader : 'style-loader',
// loader: 'style-loader',
2020-11-12 12:44:48 +00:00
// loader: MiniCssExtractPlugin.loader,
// options: {
// hmr: process.env.NODE_ENV === 'development',
// },
},
{
loader: "css-loader",
options: {
sourceMap: true
}
},
{
loader: "less-loader",
options: {
sourceMap: true
}
}
]
},
]
},
stats: {
colors: true
},
// devtool: 'inline-source-map',
2020-11-12 12:44:48 +00:00
optimization: {
minimize: isProduction,
minimizer: [
new TerserPlugin({
// cache: true,
parallel: true,
// sourceMap: true, // Must be set to true if using source-maps in production
extractComments: true,
terserOptions: {
compress: {
directives: false,
// drop_console: true,
// drop_debugger: true,
// keep_classnames: false,
// keep_fnames: false,
},
mangle: true, // Note `mangle.properties` is `false` by default.
2020-11-12 12:44:48 +00:00
keep_classnames: false,
keep_fnames: false,
}
})
],
2020-11-12 12:44:48 +00:00
},
plugins: [
new webpack.DefinePlugin({ // Remove this plugin if you don't plan to define any global constants
ENVIRONMENT: JSON.stringify(process.env.NODE_ENV),
CONSTANT_VALUE: JSON.stringify(process.env.CONSTANT_VALUE),
}),
// extractLess,
2020-11-12 12:44:48 +00:00
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: '[id].css',
}),
2020-11-12 12:44:48 +00:00
// new PurifyCSSPlugin({
// paths: glob.sync(__dirname + '/*.html'),
// minimize: true,
// }),
// new webpack.HotModuleReplacementPlugin(),
],
};
/**
* Production only plugins
*/
if (isProduction === true) {
module.exports.plugins.push(
// module.exports.optimization.minimizer.push(
// new UglifyJsPlugin({ sourceMap: true })
// );
// function () { // Create a manifest.json file that contain the hashed file names of generated static resources
// this.plugin("done", function (status) {
// require("fs").writeFileSync(
// __dirname + "/dist/manifest.json",
// JSON.stringify(status.toJson().assetsByChunkName)
// );
// });
// },
2020-11-12 12:44:48 +00:00
);
//development
} else {
module.exports.plugins.push(
//auto updating on dev server
new webpack.HotModuleReplacementPlugin()// HMR plugin will cause problems with [chunkhash]
);
}