10 lines
172 B
JavaScript
10 lines
172 B
JavaScript
![]() |
const path = require('path');
|
||
|
|
||
|
module.exports = {
|
||
|
entry: './build/rechner.js',
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, 'dist'),
|
||
|
filename: 'rechner.js',
|
||
|
},
|
||
|
};
|