static.d.ts 297 B

12345678
  1. import type { ViteDevServer } from 'vite';
  2. /**
  3. * devServer时提供static等目录的静态资源服务
  4. * @param server
  5. * @param param
  6. */
  7. export declare const initStatic: (server: ViteDevServer) => void;
  8. export declare function createPublicFileFilter(base?: string): (id: unknown) => boolean;