Skip to content

Commit

Permalink
feat: disable devserver host check for ui apps
Browse files Browse the repository at this point in the history
  • Loading branch information
pauldotyu committed Jun 16, 2023
1 parent 0f2869b commit f24f794
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
3 changes: 2 additions & 1 deletion src/store-admin/vue.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true,
devServer: {
port: 8081
port: 8081,
disableHostCheck: true
}
})
6 changes: 5 additions & 1 deletion src/store-front/vue.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,8 @@
const { defineConfig } = require('@vue/cli-service')
module.exports = defineConfig({
transpileDependencies: true
transpileDependencies: true,
devServer: {
port: 8080,
disableHostCheck: true
}
})

0 comments on commit f24f794

Please sign in to comment.