- 将所有图片路径从绝对路径改为使用 process.env.PUBLIC_URL - 修复 HomePage.tsx 中所有图片引用 - 修复 CoursePage.tsx 中所有图片引用 - 确保图片在 GitHub Pages 上正确加载 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
25 lines
819 B
TypeScript
25 lines
819 B
TypeScript
import './_version.js';
|
|
/**
|
|
* Get the current cache names and prefix/suffix used by Workbox.
|
|
*
|
|
* `cacheNames.precache` is used for precached assets,
|
|
* `cacheNames.googleAnalytics` is used by `workbox-google-analytics` to
|
|
* store `analytics.js`, and `cacheNames.runtime` is used for everything else.
|
|
*
|
|
* `cacheNames.prefix` can be used to retrieve just the current prefix value.
|
|
* `cacheNames.suffix` can be used to retrieve just the current suffix value.
|
|
*
|
|
* @return {Object} An object with `precache`, `runtime`, `prefix`, and
|
|
* `googleAnalytics` properties.
|
|
*
|
|
* @memberof workbox-core
|
|
*/
|
|
declare const cacheNames: {
|
|
readonly googleAnalytics: string;
|
|
readonly precache: string;
|
|
readonly prefix: string;
|
|
readonly runtime: string;
|
|
readonly suffix: string;
|
|
};
|
|
export { cacheNames };
|