feat: Add basic translation framework
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
This commit is contained in:
25
webpack.config.js
Normal file
25
webpack.config.js
Normal file
@@ -0,0 +1,25 @@
|
||||
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",
|
||||
},
|
||||
};
|
||||
Reference in New Issue
Block a user