bpms_site/.svn/pristine/6f/6f131926c82b596c0a1e48b261b5e66859e93328.svn-base
2025-11-02 16:38:49 +03:30

10 lines
298 B
Plaintext

/**
* A webpack loader that resolves absolute url() paths relative to their original source file.
* Requires source-maps to do any meaningful work.
*/
export default function resolveUrlLoader(this: any,
/** Css content */
content: string,
/** The source-map */
sourceMap: any): Promise<void>;