2018-01-03 01:19:31 +01:00
|
|
|
const path = require('path');
|
|
|
|
const webpack = require('webpack');
|
2018-11-27 21:45:04 +01:00
|
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
2021-04-17 14:37:41 +02:00
|
|
|
const CssMinimizerPlugin = require('css-minimizer-webpack-plugin');
|
2019-07-26 12:40:21 +02:00
|
|
|
const TerserPlugin = require('terser-webpack-plugin');
|
2018-01-03 01:19:31 +01:00
|
|
|
const nodeEnv = (process.env.NODE_ENV || 'development').trim();
|
|
|
|
|
|
|
|
// eslint-disable-next-line
|
|
|
|
const __DEV__ = nodeEnv !== 'production';
|
|
|
|
|
2021-07-29 20:18:40 +02:00
|
|
|
const devtool = __DEV__ ? 'source-map' : undefined
|
2018-01-03 01:19:31 +01:00
|
|
|
|
|
|
|
const plugins = [
|
|
|
|
new webpack.DefinePlugin({
|
|
|
|
'process.env': {
|
|
|
|
NODE_ENV: JSON.stringify(nodeEnv),
|
|
|
|
},
|
|
|
|
}),
|
2018-11-27 21:45:04 +01:00
|
|
|
new MiniCssExtractPlugin({
|
|
|
|
filename: '[name].css',
|
|
|
|
chunkFilename: '[id]-[hash].css',
|
|
|
|
}),
|
2018-01-03 01:19:31 +01:00
|
|
|
];
|
|
|
|
|
|
|
|
|
|
|
|
const themeEntries = {};
|
2021-04-29 21:58:20 +02:00
|
|
|
for (let i = 0; i <= 15; i++) {
|
2021-04-17 14:47:01 +02:00
|
|
|
themeEntries[`theme${i}`] = `./resources/assets/themes/theme${i}.scss`;
|
2018-01-03 01:19:31 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
module.exports = {
|
2018-11-27 21:45:04 +01:00
|
|
|
mode: __DEV__ ? 'development' : 'production',
|
2018-01-03 01:19:31 +01:00
|
|
|
context: __dirname,
|
|
|
|
resolve: {
|
|
|
|
extensions: ['.js', '.jsx'],
|
|
|
|
},
|
|
|
|
entry: {
|
|
|
|
...themeEntries,
|
2018-09-10 17:22:05 +02:00
|
|
|
vendor: './resources/assets/js/vendor.js',
|
2018-01-03 01:19:31 +01:00
|
|
|
},
|
|
|
|
output: {
|
|
|
|
path: path.resolve('public/assets'),
|
|
|
|
filename: '[name].js',
|
2018-08-05 13:15:37 +02:00
|
|
|
publicPath: '',
|
2018-01-03 01:19:31 +01:00
|
|
|
},
|
2018-11-27 21:45:04 +01:00
|
|
|
optimization: {
|
2021-04-17 14:37:41 +02:00
|
|
|
minimizer: __DEV__ ? [] : [new CssMinimizerPlugin(), new TerserPlugin()],
|
2018-11-27 21:45:04 +01:00
|
|
|
},
|
2018-01-03 01:19:31 +01:00
|
|
|
module: {
|
|
|
|
rules: [
|
|
|
|
{
|
|
|
|
test: /\.jsx?$/,
|
|
|
|
exclude: /(node_modules)/,
|
|
|
|
loader: 'babel-loader',
|
|
|
|
},
|
2020-11-13 20:15:31 +01:00
|
|
|
{ test: /\.(jpg|eot|ttf|otf|svg|woff2?)(\?.*)?$/, loader: 'file-loader' },
|
2018-01-03 01:19:31 +01:00
|
|
|
{ test: /\.json$/, loader: 'json-loader' },
|
2018-11-27 21:45:04 +01:00
|
|
|
{
|
2021-04-17 14:47:01 +02:00
|
|
|
test: /\.(scss|css)$/,
|
2018-11-27 21:45:04 +01:00
|
|
|
use: [
|
2018-12-28 17:47:54 +01:00
|
|
|
{ loader: MiniCssExtractPlugin.loader },
|
2018-11-27 21:45:04 +01:00
|
|
|
{ loader: 'css-loader', options: { importLoaders: 1 } },
|
2021-03-26 17:10:40 +01:00
|
|
|
{
|
2021-04-29 21:58:20 +02:00
|
|
|
loader: 'postcss-loader',
|
2021-03-26 17:10:40 +01:00
|
|
|
options: {
|
|
|
|
postcssOptions: {
|
2021-04-29 21:58:20 +02:00
|
|
|
plugins: [ [ 'autoprefixer', ], ],
|
2021-03-26 17:10:40 +01:00
|
|
|
},
|
|
|
|
},
|
|
|
|
},
|
2021-07-29 20:18:40 +02:00
|
|
|
{
|
2021-04-29 21:58:20 +02:00
|
|
|
loader: 'sass-loader',
|
|
|
|
options: {
|
|
|
|
sassOptions: {
|
|
|
|
quietDeps: true
|
|
|
|
}
|
|
|
|
}
|
|
|
|
},
|
2018-11-27 21:45:04 +01:00
|
|
|
]
|
|
|
|
}
|
2018-01-03 01:19:31 +01:00
|
|
|
],
|
|
|
|
},
|
|
|
|
plugins,
|
|
|
|
devtool,
|
|
|
|
};
|