Rocky_Mountain_Vending/.pnpm-store/v10/files/fc/d5f86a98ff2dbe20118e5cc6d5b6c41f85c1d2cd9a67d1dcf9f6d4a8d5bb13ef1c99624f6d366b40b28407b5a130fdfb462e52bde1a4512b69290fa1f8ae2a
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

27 lines
No EOL
859 B
Text

import curry from 'next/dist/compiled/lodash.curry';
import { nextImageLoaderRegex } from '../../../../webpack-config';
import { loader } from '../../helpers';
import { pipe } from '../../utils';
import { getCustomDocumentImageError } from './messages';
export const images = curry(async function images(_ctx, config) {
const fns = [
loader({
oneOf: [
{
test: nextImageLoaderRegex,
use: {
loader: 'error-loader',
options: {
reason: getCustomDocumentImageError()
}
},
issuer: /pages[\\/]_document\./
}
]
})
];
const fn = pipe(...fns);
return fn(config);
});
//# sourceMappingURL=index.js.map