We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7fdef24 commit 5be17cdCopy full SHA for 5be17cd
fabfile.py
@@ -17,7 +17,7 @@ def _prepare_local_website(install='true'):
17
if install =='true':
18
local('npm run build')
19
local('mkdir -p %s' % tmp_dir)
20
- local('cp -rv static/ %s' % tmp_dir)
+ local('cp static/index.html %s' % tmp_dir)
21
22
def prepare_remote_dirs():
23
_set_user_dir()
src/views/ManageView.vue
@@ -125,7 +125,7 @@ export default {
125
data({to}) {
126
var params = this.$route.params
127
this.liveId = params.liveId
128
- // this.fetchLive()
+ this.fetchLive()
129
}
130
},
131
created() {
0 commit comments