- 将所有图片路径从绝对路径改为使用 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>
17 lines
574 B
JavaScript
17 lines
574 B
JavaScript
"use strict";
|
|
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
exports.preprocess = exports.postprocess = void 0;
|
|
|
|
// https://eslint.org/docs/developer-guide/working-with-plugins#processors-in-plugins
|
|
// https://github.com/typescript-eslint/typescript-eslint/issues/808
|
|
const preprocess = source => [source];
|
|
|
|
exports.preprocess = preprocess;
|
|
|
|
const postprocess = messages => // snapshot files should only be linted with snapshot specific rules
|
|
messages[0].filter(message => message.ruleId === 'jest/no-large-snapshots');
|
|
|
|
exports.postprocess = postprocess; |