25 lines
500 B
JavaScript
25 lines
500 B
JavaScript
|
const path = require("path");
|
||
|
|
||
|
const port = 3000;
|
||
|
const openBrowser = true;
|
||
|
|
||
|
module.exports = {
|
||
|
entry: {
|
||
|
app: ["./src/index.js"],
|
||
|
},
|
||
|
output: {
|
||
|
filename: "bundle.js",
|
||
|
path: path.resolve(__dirname, "public"),
|
||
|
publicPath: "/",
|
||
|
},
|
||
|
mode: "development",
|
||
|
devtool: "source-map",
|
||
|
devServer: {
|
||
|
port: port,
|
||
|
open: openBrowser,
|
||
|
historyApiFallback: {
|
||
|
index: "index.html",
|
||
|
},
|
||
|
static: "public",
|
||
|
},
|
||
|
};
|