Skip to content

Commit 5b40b6e

Browse files
author
messenjer
committed
chore(bootstrap-vue-3): update dev port from 8080 to 5174 (to avoird conflict with vuepress 8080)
1 parent c56d688 commit 5b40b6e

File tree

3 files changed

+4
-5
lines changed

3 files changed

+4
-5
lines changed

apps/playground/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
"private": true,
55
"type": "module",
66
"scripts": {
7-
"dev": "vite",
7+
"dev": "vite --port 5173",
88
"build": "vue-tsc --noEmit && vite build",
99
"preview": "vite preview"
1010
},
@@ -22,4 +22,4 @@
2222
"vite": "^3.0.0",
2323
"vue-tsc": "^0.38.4"
2424
}
25-
}
25+
}

packages/bootstrap-vue-3/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
"types": "./dist/BootstrapVue.d.ts",
2424
"private": false,
2525
"scripts": {
26-
"dev": "vite",
26+
"dev": "vite --port 5174",
2727
"build": "vue-tsc --noEmit && vite build",
2828
"serve": "vite preview",
2929
"lint": "eslint --ext .js,.vue --ignore-path ../../.gitignore --fix src",

packages/bootstrap-vue-3/vite.config.ts

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -61,8 +61,7 @@ const config = defineConfig({
6161
],
6262

6363
server: {
64-
host: 'localhost', //this is the default
65-
port: 8080, //this is the default
64+
host: true,
6665
},
6766

6867
test: {

0 commit comments

Comments
 (0)