Changed webpack server to serve on all interfaces. Makes remote development easier.

This commit is contained in:
VakarisZ 2020-10-20 12:10:40 +03:00
parent d4002fd7b5
commit 67f5962977
1 changed files with 1 additions and 0 deletions

View File

@ -71,6 +71,7 @@ module.exports = {
publicPath: '/' publicPath: '/'
}, },
devServer: { devServer: {
host: '0.0.0.0',
proxy: { proxy: {
'/api': { '/api': {
target: 'https://localhost:5000', target: 'https://localhost:5000',