mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-04 07:04:03 +01:00
Fix Timeout message not translated Fix change target FW is not immediatly rendered Add updateFW support in test server Add JSON as verbose output Fix upload progress bar to show 100% before displaying next message
18 lines
483 B
JavaScript
18 lines
483 B
JavaScript
import merge from "webpack-merge"
|
|
import environment from "./environment"
|
|
var path = require("path")
|
|
|
|
module.exports = merge(environment, {
|
|
devtool: "inline-source-map",
|
|
devServer: {
|
|
contentBase: path.join(__dirname, "../src/server/public/"),
|
|
port: 3000,
|
|
open: true,
|
|
proxy: {
|
|
"/command": "http://localhost:8080",
|
|
"/files": "http://localhost:8080",
|
|
"/updatefw": "http://localhost:8080",
|
|
},
|
|
},
|
|
})
|