notenrechner/webpack.config.js
Frieder Hannenheim d8eaa98e36 basic notenrechner
2025-01-29 14:57:00 +01:00

9 lines
172 B
JavaScript

const path = require('path');
module.exports = {
entry: './build/rechner.js',
output: {
path: path.resolve(__dirname, 'dist'),
filename: 'rechner.js',
},
};