astro-ghostcms/.pnpm-store/v3/files/19/ee66f883d30706a93c83e32a8e3...

21 lines
524 B
Plaintext
Raw Normal View History

2024-02-14 14:10:47 +00:00
function getProxyCode(options, isSSR) {
const stringifiedFSPath = JSON.stringify(options.fsPath);
return `
new Proxy(${JSON.stringify(options)}, {
get(target, name, receiver) {
if (name === 'clone') {
return structuredClone(target);
}
if (name === 'fsPath') {
return ${stringifiedFSPath};
}
${!isSSR ? `globalThis.astroAsset.referencedImages.add(${stringifiedFSPath});` : ""}
return target[name];
}
})
`;
}
export {
getProxyCode
};