Files
claudemesh/apps/web/css-stub-register.mjs
Alejandro Gutiérrez b2999878c4 fix(web): inline CSS stub loader for Vercel path resolution
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
2026-04-13 09:34:56 +01:00

11 lines
474 B
JavaScript

import { register } from "node:module";
register("data:text/javascript," + encodeURIComponent(`
const STUB_EXT = ['.css', '.scss', '.sass', '.svg', '.png', '.jpg', '.jpeg', '.gif', '.ico', '.woff', '.woff2', '.ttf', '.eot'];
export function resolve(specifier, context, nextResolve) {
if (STUB_EXT.some(ext => specifier.endsWith(ext))) {
return { url: 'data:text/javascript,export default ""', shortCircuit: true };
}
return nextResolve(specifier, context);
}
`));