新增: - backend/venv/ - Python 虚拟环境 - backend/start.sh - 启动脚本(使用虚拟环境) - backend/requirements.txt - 依赖列表 - .gitignore - 忽略虚拟环境和缓存文件 说明: - 每个项目使用独立虚拟环境 - 避免依赖冲突 - 启动脚本自动创建和激活虚拟环境
31 lines
1.0 KiB
JavaScript
31 lines
1.0 KiB
JavaScript
/*
|
|
Copyright 2020 Google LLC
|
|
|
|
Use of this source code is governed by an MIT-style
|
|
license that can be found in the LICENSE file or at
|
|
https://opensource.org/licenses/MIT.
|
|
*/
|
|
import '../_version.js';
|
|
/**
|
|
* A plugin, designed to be used with PrecacheController, to translate URLs into
|
|
* the corresponding cache key, based on the current revision info.
|
|
*
|
|
* @private
|
|
*/
|
|
class PrecacheCacheKeyPlugin {
|
|
constructor({ precacheController }) {
|
|
this.cacheKeyWillBeUsed = async ({ request, params, }) => {
|
|
// Params is type any, can't change right now.
|
|
/* eslint-disable */
|
|
const cacheKey = (params === null || params === void 0 ? void 0 : params.cacheKey) ||
|
|
this._precacheController.getCacheKeyForURL(request.url);
|
|
/* eslint-enable */
|
|
return cacheKey
|
|
? new Request(cacheKey, { headers: request.headers })
|
|
: request;
|
|
};
|
|
this._precacheController = precacheController;
|
|
}
|
|
}
|
|
export { PrecacheCacheKeyPlugin };
|