notenrechner/webpack.config.js

10 lines
172 B
JavaScript
Raw Permalink Normal View History

2025-01-29 14:57:00 +01:00
const path = require('path');
module.exports = {
entry: './build/rechner.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'rechner.js',
},
};