Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/04533736ab281d53bb35f07074f7d79d6078266e660979e241ed4146c0e344f9b0bc87a2337305e95ba8ef73bf1378c581ae3f85be02715138522366a3966e
DMleadgen 46d973904b
Initial commit: Rocky Mountain Vending website
Next.js website for Rocky Mountain Vending company featuring:
- Product catalog with Stripe integration
- Service areas and parts pages
- Admin dashboard with Clerk authentication
- SEO optimized pages with JSON-LD structured data

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-12 16:22:15 -07:00

16 lines
No EOL
561 B
Text

import { relative } from 'path';
import { SimpleWebpackError } from './simpleWebpackError';
import { getAppLoader } from '../../../entries';
export function getNextAppLoaderError(err, module, compiler) {
try {
if (!module.loaders[0].loader.includes(getAppLoader())) {
return false;
}
const file = relative(compiler.context, module.buildInfo.route.absolutePagePath);
return new SimpleWebpackError(file, err.message);
} catch {
return false;
}
}
//# sourceMappingURL=parseNextAppLoaderError.js.map