kalker/kalk_web/webpack.config.js
2020-12-30 22:50:39 +01:00

10 lines
183 B
JavaScript

const path = require('path');
module.exports = {
entry: "./index.js",
output: {
path: path.resolve(__dirname, "dist"),
filename: "index.js",
},
mode: "development"
};