mirror of
https://github.com/sbuffkin/hexmaker.git
synced 2026-07-22 14:30:24 +00:00
11 lines
333 B
JavaScript
11 lines
333 B
JavaScript
/** Stub loader — returns an empty-string default export for .png and .md assets. */
|
|
export async function load(url, context, nextLoad) {
|
|
if (url.endsWith(".png") || url.endsWith(".md")) {
|
|
return {
|
|
format: "module",
|
|
shortCircuit: true,
|
|
source: 'export default "";',
|
|
};
|
|
}
|
|
return nextLoad(url, context);
|
|
}
|