There was an error while loading. Please reload this page.
import.meta.url
The function in the dist was like
function importMetaResolve(specifier) { if (import.meta.resolve) return import.meta.resolve(specifier); return new URL(specifier, new URL("../../../src/node/plugins/importAnalysisBuild.ts", import.meta.url)).href; }
but this should be
function importMetaResolve(specifier) { if (import.meta.resolve) return import.meta.resolve(specifier); return new URL(specifier, import.meta.url).href;
The function in the dist was like
but this should be