- 将所有图片路径从绝对路径改为使用 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>
30 lines
1.3 KiB
TypeScript
30 lines
1.3 KiB
TypeScript
import webpack from 'webpack';
|
|
import { ForkTsCheckerWebpackPluginOptions } from './ForkTsCheckerWebpackPluginOptions';
|
|
import { Pool } from './utils/async/pool';
|
|
declare class ForkTsCheckerWebpackPlugin implements webpack.Plugin {
|
|
/**
|
|
* Current version of the plugin
|
|
*/
|
|
static readonly version: string;
|
|
/**
|
|
* Default pools for the plugin concurrency limit
|
|
*/
|
|
static readonly issuesPool: Pool;
|
|
static readonly dependenciesPool: Pool;
|
|
/**
|
|
* @deprecated Use ForkTsCheckerWebpackPlugin.issuesPool instead
|
|
*/
|
|
static get pool(): Pool;
|
|
private readonly options;
|
|
constructor(options?: ForkTsCheckerWebpackPluginOptions);
|
|
static getCompilerHooks(compiler: webpack.Compiler): {
|
|
start: import("tapable").AsyncSeriesWaterfallHook<import("./reporter/FilesChange").FilesChange, webpack.compilation.Compilation, any>;
|
|
waiting: import("tapable").SyncHook<webpack.compilation.Compilation, any, any>;
|
|
canceled: import("tapable").SyncHook<webpack.compilation.Compilation, any, any>;
|
|
error: import("tapable").SyncHook<Error, webpack.compilation.Compilation, any>;
|
|
issues: import("tapable").SyncWaterfallHook<import("./issue/Issue").Issue[], webpack.compilation.Compilation | undefined, void>;
|
|
};
|
|
apply(compiler: webpack.Compiler): void;
|
|
}
|
|
export { ForkTsCheckerWebpackPlugin };
|