Skip to content

Commit 5be17cd

Browse files
committed
only static
1 parent 7fdef24 commit 5be17cd

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

fabfile.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def _prepare_local_website(install='true'):
1717
if install =='true':
1818
local('npm run build')
1919
local('mkdir -p %s' % tmp_dir)
20-
local('cp -rv static/ %s' % tmp_dir)
20+
local('cp static/index.html %s' % tmp_dir)
2121

2222
def prepare_remote_dirs():
2323
_set_user_dir()

src/views/ManageView.vue

+1-1
Original file line numberDiff line numberDiff line change
@@ -125,7 +125,7 @@ export default {
125125
data({to}) {
126126
var params = this.$route.params
127127
this.liveId = params.liveId
128-
// this.fetchLive()
128+
this.fetchLive()
129129
}
130130
},
131131
created() {

0 commit comments

Comments
 (0)