UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

15 lines (14 loc) • 415 B
export { rollupSourceMapRemove }; export { rollupSourceMapPassthrough }; /** Remove entire source mapping, to save KBs. */ declare function rollupSourceMapRemove(code: string): { code: string; map: { mappings: ''; }; }; /** Don't provide any source map, pass through current source map instead. */ declare function rollupSourceMapPassthrough(code: string): { code: string; map: null; };