121 lines
3.4 KiB
JavaScript
Executable file
121 lines
3.4 KiB
JavaScript
Executable file
/**
|
|
* Webpack main configuration file
|
|
*/
|
|
|
|
const path = require('path');
|
|
const fs = require('fs');
|
|
const CopyWebpackPlugin = require('copy-webpack-plugin');
|
|
const HTMLWebpackPlugin = require('html-webpack-plugin');
|
|
const ImageMinimizerPlugin = require('image-minimizer-webpack-plugin');
|
|
const MiniCssExtractPlugin = require('mini-css-extract-plugin');
|
|
const { CleanWebpackPlugin } = require('clean-webpack-plugin');
|
|
const HtmlReplaceWebpackPlugin = require('html-replace-webpack-plugin')
|
|
|
|
const environment = require('./configuration/environment');
|
|
|
|
const templateFiles = fs.readdirSync(environment.paths.source)
|
|
.filter((file) => path.extname(file).toLowerCase() === '.html');
|
|
|
|
const htmlPluginEntries = templateFiles.map((template) => new HTMLWebpackPlugin({
|
|
inject: true,
|
|
hash: false,
|
|
filename: template,
|
|
template: path.resolve(environment.paths.source, template),
|
|
favicon: path.resolve(environment.paths.source, 'err_images', 'favicon.ico'),
|
|
}));
|
|
|
|
module.exports = {
|
|
entry: {
|
|
app: path.resolve(environment.paths.source, 'err_js', 'app.js'),
|
|
},
|
|
output: {
|
|
filename: 'err_js/[name].js',
|
|
path: environment.paths.output,
|
|
publicPath: '/',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.((c|sa|sc)ss)$/i,
|
|
use: [MiniCssExtractPlugin.loader, 'css-loader', 'sass-loader', 'postcss-loader'],
|
|
},
|
|
{
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
use: ['babel-loader'],
|
|
},
|
|
{
|
|
test: /\.(png|gif|jpe?g|svg)$/i,
|
|
use: [
|
|
{
|
|
loader: 'url-loader',
|
|
options: {
|
|
name: 'images/design/[name].[hash:6].[ext]',
|
|
publicPath: '../',
|
|
limit: environment.limits.images,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
{
|
|
test: /\.(eot|ttf|woff|woff2)$/,
|
|
use: [
|
|
{
|
|
loader: 'url-loader',
|
|
options: {
|
|
name: 'fonts/[name].[hash:6].[ext]',
|
|
publicPath: '../',
|
|
limit: environment.limits.fonts,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
plugins: [
|
|
new MiniCssExtractPlugin({
|
|
filename: 'err_css/[name].css',
|
|
}),
|
|
new ImageMinimizerPlugin({
|
|
test: /\.(jpe?g|png|gif|svg)$/i,
|
|
minimizerOptions: {
|
|
// Lossless optimization with custom option
|
|
// Feel free to experiment with options for better result for you
|
|
plugins: [
|
|
['gifsicle', { interlaced: true }],
|
|
['jpegtran', { progressive: true }],
|
|
['optipng', { optimizationLevel: 5 }],
|
|
['svgo', { configFile: path.resolve('svgo.config.js'), },
|
|
],
|
|
],
|
|
},
|
|
}),
|
|
new HtmlReplaceWebpackPlugin([
|
|
{
|
|
pattern: '@@errcode@@',
|
|
replacement: '{{placeholder "http.error.status_code"}}'
|
|
},
|
|
{
|
|
pattern: '@@errtext@@',
|
|
replacement: '{{placeholder "http.error.status_text"}}'
|
|
}
|
|
]),
|
|
new CleanWebpackPlugin({
|
|
verbose: true,
|
|
cleanOnceBeforeBuildPatterns: ['**/*', '!stats.json'],
|
|
}),
|
|
new CopyWebpackPlugin({
|
|
patterns: [
|
|
{
|
|
from: path.resolve(environment.paths.source, 'err_images', 'content'),
|
|
to: path.resolve(environment.paths.output, 'err_images', 'content'),
|
|
toType: 'dir',
|
|
globOptions: {
|
|
ignore: ['*.DS_Store', 'Thumbs.db'],
|
|
},
|
|
},
|
|
],
|
|
}),
|
|
].concat(htmlPluginEntries),
|
|
target: 'web',
|
|
};
|