Browse Source

fix: Safari + iOS load bug

pull/175/head
NGPixel 7 years ago
parent
commit
a96a7efd9d
2 changed files with 3 additions and 1 deletions
  1. 1
      config.sample.yml
  2. 3
      fuse.js

1
config.sample.yml

@ -13,6 +13,7 @@ title: Wiki
# ---------------------------------------------------------------------
# Full public path to the site, without the trailing slash
# ---------------------------------------------------------------------
# INCLUDE CLIENT PORT IF NOT 80/443!
host: http://localhost

3
fuse.js

@ -50,7 +50,8 @@ const ALIASES = {
'simplemde': 'simplemde/dist/simplemde.min.js',
'socket-io-client': 'socket.io-client/dist/socket.io.js',
'vue': (dev) ? 'vue/dist/vue.js' : 'vue/dist/vue.min.js',
'vue-lodash': 'vue-lodash/dist/vue-lodash.min.js'
'vue-lodash': 'vue-lodash/dist/vue-lodash.min.js',
'vue-resource': (dev) ? 'vue-resource/dist/vue-resource.js' : 'vue-resource/dist/vue-resource.es2015.js'
}
const SHIMS = {
jquery: {

Loading…
Cancel
Save