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>
26 lines
No EOL
827 B
Text
26 lines
No EOL
827 B
Text
"use strict";
|
|
Object.defineProperty(exports, "__esModule", {
|
|
value: true
|
|
});
|
|
Object.defineProperty(exports, "getNextAppLoaderError", {
|
|
enumerable: true,
|
|
get: function() {
|
|
return getNextAppLoaderError;
|
|
}
|
|
});
|
|
const _path = require("path");
|
|
const _simpleWebpackError = require("./simpleWebpackError");
|
|
const _entries = require("../../../entries");
|
|
function getNextAppLoaderError(err, module, compiler) {
|
|
try {
|
|
if (!module.loaders[0].loader.includes((0, _entries.getAppLoader)())) {
|
|
return false;
|
|
}
|
|
const file = (0, _path.relative)(compiler.context, module.buildInfo.route.absolutePagePath);
|
|
return new _simpleWebpackError.SimpleWebpackError(file, err.message);
|
|
} catch {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
//# sourceMappingURL=parseNextAppLoaderError.js.map |