- 将所有图片路径从绝对路径改为使用 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>
16 lines
905 B
TypeScript
16 lines
905 B
TypeScript
import { ForkTsCheckerWebpackPluginState } from '../ForkTsCheckerWebpackPluginState';
|
|
import { FSWatcher } from 'chokidar';
|
|
import { Watcher, WatchFileSystem, WatchFileSystemOptions } from './WatchFileSystem';
|
|
import { Compiler } from 'webpack';
|
|
declare class InclusiveNodeWatchFileSystem implements WatchFileSystem {
|
|
private watchFileSystem;
|
|
private compiler;
|
|
private pluginState;
|
|
get watcher(): import("./WatchFileSystem").Watchpack;
|
|
readonly dirsWatchers: Map<string, FSWatcher | undefined>;
|
|
constructor(watchFileSystem: WatchFileSystem, compiler: Compiler, pluginState: ForkTsCheckerWebpackPluginState);
|
|
private paused;
|
|
watch(files: Iterable<string>, dirs: Iterable<string>, missing: Iterable<string>, startTime?: number, options?: Partial<WatchFileSystemOptions>, callback?: Function, callbackUndelayed?: Function): Watcher;
|
|
}
|
|
export { InclusiveNodeWatchFileSystem };
|