feat: Add basic translation framework
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
2024-07-30 20:02:37 +02:00
parent 75a6df9d9d
commit c078eaa6c5
26 changed files with 5560 additions and 140 deletions

25
webpack.config.js Normal file
View 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",
},
};