mirror of
https://github.com/luc-github/ESP3D-WEBUI.git
synced 2026-03-14 03:46:50 +01:00
16 lines
387 B
JavaScript
16 lines
387 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",
|
|
},
|
|
},
|
|
})
|