16 lines
279 B
JavaScript
16 lines
279 B
JavaScript
|
const path = require("path");
|
||
|
|
||
|
module.exports = {
|
||
|
mode: "development",
|
||
|
entry: "./src/index.js",
|
||
|
devtool: 'inline-source-map',
|
||
|
devServer: {
|
||
|
contentBase: "./dist",
|
||
|
port: 8080
|
||
|
},
|
||
|
output: {
|
||
|
filename: "main.js",
|
||
|
path: path.resolve(__dirname, "dist")
|
||
|
}
|
||
|
}
|