This website works better with JavaScript.
Home
Help
Sign In
heuzef
/
lesspass
mirror of
https://github.com/lesspass/lesspass.git
Watch
1
Star
0
Fork
0
Code
Issues
0
Releases
67
Wiki
Activity
Browse Source
remove app.cache obsolete feature
pull/44/head
Guillaume Vincent
8 years ago
parent
d5ba500835
commit
8d9fe9605e
3 changed files
with
5 additions
and
4 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+3
-1
app/main.js
+1
-1
index.html
+1
-2
webpack.config.js
+ 3
- 1
app/main.js
View File
@@ -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
View File
@@ -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
View File
@@ -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
})
])
}
Write
Preview
Loading…
Cancel
Save