Modernise CI (#5)
All checks were successful
ci/woodpecker/push/build Pipeline was successful
ci/woodpecker/push/all-checks-complete Pipeline was successful

Co-authored-by: Smaug123 <3138005+Smaug123@users.noreply.github.com>
Reviewed-on: #5
This commit is contained in:
2025-09-09 08:18:41 +00:00
parent 1046be36a3
commit f46557926e
12 changed files with 60 additions and 45 deletions

View File

@@ -1,9 +1,4 @@
// Note this only includes basic configuration for development mode.
// For a more comprehensive configuration check:
// https://github.com/fable-compiler/webpack-config-template
var path = require("path");
module.exports = {
mode: "development",
entry: "./src/App.fs.js",
@@ -12,8 +7,12 @@ module.exports = {
filename: "bundle.js",
},
devServer: {
publicPath: "/",
contentBase: "./public",
static: {
directory: path.join(__dirname, "./public"),
},
devMiddleware: {
publicPath: "/",
},
port: 8080,
},
module: {