parentInstance: ComponentInternalInstance,
) => void
-const compileCache: Record<string, SSRRenderFunction> = Object.create(null)
+let compileCache: Record<string, SSRRenderFunction> = Object.create(null)
+
+export function ssrClearCompileCache(): void {
+ compileCache = Object.create(null)
+}
export function ssrCompile(
template: string,
// deprecated
renderToStream,
} from './renderToStream'
+export { ssrClearCompileCache } from './helpers/ssrCompile'
// internal runtime helpers
export * from './internal'