Procházet zdrojové kódy

remove app.cache obsolete feature

pull/44/head
Guillaume Vincent před 8 roky
rodič
revize
8d9fe9605e
3 změnil soubory, kde provedl 5 přidání a 4 odebrání
  1. +3
    -1
      app/main.js
  2. +1
    -1
      index.html
  3. +1
    -2
      webpack.config.js

+ 3
- 1
app/main.js Zobrazit soubor

@@ -10,4 +10,6 @@ require('./locales.js');
require('./router.js');

var Resource = require('vue-resource');
Vue.use(Resource);
Vue.use(Resource);

require('offline-plugin/runtime').install();

+ 1
- 1
index.html Zobrazit soubor

@@ -1,5 +1,5 @@
<!DOCTYPE html>
<html manifest="dist/appcache/manifest.appcache">
<html>
<head>
<meta charset="utf-8">
<title>LessPass</title>


+ 1
- 2
webpack.config.js Zobrazit soubor

@@ -42,9 +42,8 @@ if (process.env.NODE_ENV === 'production') {
caches: 'all',
scope: '/dist/',
updateStrategy: 'all',
version: 'v1',
ServiceWorker: { output: 'sw.js'},
AppCache: {directory: 'appcache/'}
AppCache: false
})
])
}

Načítá se…
Zrušit
Uložit