- web/: Vue 3 + Vite + UnoCSS + Pinia, dark tactical theme (amber/#0d1117) - AppNav, ListingCard, SearchView with filters/sort, composables (useSnipeMode, useKonamiCode, useMotion), Pinia search store - Steal shimmer, auction countdown, Snipe Mode easter egg all native in Vue - docker/web/: nginx + multi-stage Dockerfile (node build → nginx serve) - compose.yml: api (8510) + web (8509) services - Dockerfile CMD updated to uvicorn for upcoming FastAPI layer - Clean build: 0 TS errors, 380 modules
15 lines
553 B
TypeScript
15 lines
553 B
TypeScript
import type { Compiler } from 'webpack';
|
|
declare const ALL = "all";
|
|
declare const STATIC = "static";
|
|
declare const DYNAMIC = "dynamic";
|
|
declare type AvailableModules = typeof ALL | typeof STATIC | typeof DYNAMIC;
|
|
declare class VirtualModulesPlugin {
|
|
private _staticModules;
|
|
private _compiler;
|
|
private _watcher;
|
|
constructor(modules?: Record<string, string>);
|
|
getModuleList(filter?: AvailableModules): {};
|
|
writeModule(filePath: string, contents: string): void;
|
|
apply(compiler: Compiler): void;
|
|
}
|
|
export = VirtualModulesPlugin;
|