Files
meldestelle/clients/app/webpack.config.d/webpack.config.js
T
stefan 97d0af1b07 fixing clients
new frontend
2025-09-26 13:14:00 +02:00

11 lines
314 B
JavaScript

const HtmlWebpackPlugin = require('html-webpack-plugin');
const path = require('path');
const templatePath = path.resolve(__dirname, '../../../../clients/app/src/jsMain/resources/index.html');
config.plugins.push(new HtmlWebpackPlugin({
template: templatePath,
filename: 'index.html',
inject: 'body',
}));