После запуска команды
webpack --mode=production --config ./webpack.config.js
bundle.js все время добавляется в конец. То есть сколько раз вызову, столько раз и будет подключение бандла в html
Конфиг webpack.config.js такой
const HtmlWebpackPlugin = require('html-webpack-plugin');
const Dotenv = require('dotenv-webpack');
const webpack = require('webpack');
const path = require('path');
const fs = require('fs');
const PATHS = {
public: path.resolve(__dirname, 'src'),
};
const PAGES_DIR = `${PATHS.public}/views/`;
const PAGES = fs.readdirSync(PAGES_DIR).filter(fileName => fileName.endsWith('.pug'));
module.exports = {
entry: {
main: `${PATHS.public}/main.js`,
},
output: {
path: PATHS.public,
filename: 'bundle.js',
publicPath: '/',
},
devtool: 'source-map',
module: {
rules: [
{
test: /\.js$/,
use: ['babel-loader'],
exclude: /node_modules/
},
{ test: /\.(png|jpg|gif|svg)$/, use: [
{
loader: 'url-loader',
options: {
mimetype: 'image/png',
},
},
]},
{
test: /\.css$/,
use: ['style-loader', 'css-loader'],
exclude: /node_modules/,
},
{
test: /\.scss$/,
use: ['style-loader', 'css-loader', 'sass-loader'],
exclude: /node_modules/,
},
{
test: /\.(woff|woff2|ttf|eot)$/,
use: 'file-loader?name=fonts/[name].[ext]!static'
},
{
test: /\.pug$/,
use: ['pug-loader'],
},
]
},
devServer: {
contentBase: 'src',
historyApiFallback: true,
hot: true,
port: 3000,
watchContentBase: true,
},
plugins: [
...PAGES.map(page => new HtmlWebpackPlugin({
template: `${PAGES_DIR}/${page}`,
filename: `./${page.replace(/\.pug/,'.html')}`
})),
new HtmlWebpackPlugin({
template: path.resolve(__dirname, './src/index.html'),
filename: 'index.html',
}),
new Dotenv(),
],
optimization: {
minimize: true,
splitChunks: {
minChunks: Infinity,
chunks: 'all'
}
}
}
В чем может быть проблема?