10 lines
205 B
JavaScript
10 lines
205 B
JavaScript
|
const path = require("path");
|
||
|
|
||
|
module.exports = {
|
||
|
entry: "./src/index.js",
|
||
|
output: {
|
||
|
path: path.resolve(__dirname, "webroot"),
|
||
|
filename: "index.js"
|
||
|
},
|
||
|
mode: "development"
|
||
|
};
|