You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
import type { ViteDevServer } from 'vite';
|
|
/**
|
|
* devServer时提供static等目录的静态资源服务
|
|
* @param server
|
|
* @param param
|
|
*/
|
|
export declare const initStatic: (server: ViteDevServer) => void;
|
|
export declare function createPublicFileFilter(base?: string): (id: unknown) => boolean;
|