Skip to content

Commit

Permalink
chore(vue): disable host check on vue-cli-service (#472)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhayab authored Sep 4, 2023
1 parent 60d8fbe commit a8e43ed
Show file tree
Hide file tree
Showing 19 changed files with 93 additions and 0 deletions.
5 changes: 5 additions & 0 deletions vue-instantsearch/algolia-insights/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/autocomplete-results-page/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/conditional-request/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/debounced-search-box/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/extending-widgets/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/geo-search/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/infinite-scroll/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/loading-indicator/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/multi-index-autocomplete/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/multi-index-hits/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/query-suggestions/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/refresh/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/routing-basic/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/routing-seo-friendly/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/routing-state-mapping/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/routing-vue-router/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
5 changes: 5 additions & 0 deletions vue-instantsearch/secured-api-keys/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};
3 changes: 3 additions & 0 deletions vue-instantsearch/server-side-rendering/vue.config.js
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
pluginOptions: {
ssr: {
nodeExternalsWhitelist: [
Expand Down
5 changes: 5 additions & 0 deletions vue-instantsearch/vue3-vue-cli/vue.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
module.exports = {
devServer: {
disableHostCheck: true,
},
};

0 comments on commit a8e43ed

Please sign in to comment.