mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-03 22:54:03 +01:00
14 lines
291 B
JavaScript
14 lines
291 B
JavaScript
import merge from "webpack-merge"
|
|
import environment from "./environment"
|
|
|
|
module.exports = merge(environment, {
|
|
devtool: "inline-source-map",
|
|
devServer: {
|
|
port: 3000,
|
|
open: true,
|
|
proxy: {
|
|
"/command": "http://localhost:8080",
|
|
},
|
|
},
|
|
})
|