Я смотрю вопрос популярный, может кому поможет ответ, мне помогло:
переименовать файл index.html в index.ejs
в папке node_modules найти папку webpack, в папкe bin лежит файл webpack.js, в файле после первого комментария прописать путь к этому файлу html: { template: './src/index.ejs' }
типа того:
#!/usr/bin/env node
html: { template: './src/index.ejs' }
/**
* @param {string} command process to run
* @param {string[]} args command line arguments
* @returns {Promise} promise
*/
const runCommand = (command, args) => {
const cp = require("child_process");
return new Promise((resolve, reject) => {
const executedCommand = cp.spawn(command, args, {
stdio: "inherit",
shell: true
});
executedCommand.on("error", error => {
reject(error);
});
executedCommand.on("exit", code => {
if (code === 0) {
resolve();
} else {
reject();
}
});
});
};
но это скорее всего поможет если нет конфига для вебпака