我正在使用polymer-cli进行bootstrap&管理我的聚合物项目。
我知道缓存管理的最佳实践是更新每个版本中的文件名,因此您可以将缓存设置为永不过期。
但是聚合物-CLI团队尚未实施它,那么替代方案是什么?
新版本的聚合物已发布。安装它。在文件夹结构中,您会找到 polymer.json 文件。为此,您可以定义您的条目,应用程序,懒惰的碎片和下面的缓存策略。
{
"entrypoint": "index.html",
"shell": "src/shop-app.html",
"fragments": [
"src/shop-list.html",
"src/shop-detail.html",
"src/shop-cart.html",
"src/shop-checkout.html",
"src/lazy-resources.html"
],
"sourceGlobs": [
"src/**/*",
"data/**/*",
"images/**/*",
"bower.json"
],
"includeDependencies": [
"manifest.json",
"bower_components/webcomponentsjs/webcomponents-lite.min.js"
]
}