We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c81f7 commit 1fafcefCopy full SHA for 1fafcef
demo/package.json
@@ -5,7 +5,7 @@
5
"scripts": {
6
"dev": "vue-cli-service serve",
7
"build": "vue-cli-service build",
8
- "gh:publish": "yarn run build && gh-pages -d dist"
+ "gh:publish": "NODE_ENV=production yarn run build && gh-pages -d dist"
9
},
10
"dependencies": {
11
"node-forge": "^0.10.0",
demo/vue.config.js
@@ -1,4 +1,5 @@
1
module.exports = {
2
lintOnSave: false,
3
productionSourceMap: false,
4
+ publicPath: process.env.NODE_ENV === 'production' ? '/vue-beautiful-chat/' : '/',
}
0 commit comments