updated more deps, major versions

This commit is contained in:
Adam Piontek 2021-11-25 14:30:01 -05:00
parent a0e947be50
commit 5cef3d699e
4 changed files with 1179 additions and 5053 deletions

View file

@ -9,7 +9,7 @@ module.exports = {
output: path.resolve(__dirname, '../dist/'),
},
server: {
host: '0.0.0.0',
host: '127.0.0.1',
port: 4000,
},
limits: {

View file

@ -12,17 +12,17 @@ module.exports = merge(webpackConfiguration, {
/* Development Server Configuration */
devServer: {
contentBase: environment.paths.output,
watchContentBase: true,
publicPath: '/',
static: {
directory: environment.paths.output,
staticOptions: {},
publicPath: "/",
serveIndex: true,
watch: true,
},
open: true,
historyApiFallback: true,
compress: true,
overlay: true,
hot: false,
watchOptions: {
poll: 300,
},
...environment.server,
},