本網站在啟用 JavaScript 的情況下可以運作的更好。
首頁
說明
登入
heuzef
/
lesspass
镜像来自
https://github.com/lesspass/lesspass.git
關注
1
收藏
0
複製
0
程式碼
問題
0
版本發佈
67
Wiki
活動
瀏覽代碼
remove app.cache obsolete feature
pull/44/head
Guillaume Vincent
8 年之前
父節點
d5ba500835
當前提交
8d9fe9605e
共有
3 個檔案被更改
,包括
5 行新增
和
4 行删除
分割檢視
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
查看文件
@@ -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
查看文件
@@ -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
查看文件
@@ -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…
取消
儲存