Rocky_Mountain_Vending/.pnpm-store/v10/files/39/de8f269afd4074b226c8da23d48f102502cddf387c7e507fd877a57d7858cc51cb64eb3a45f4f8a485944f37d9d665dbb6166d470655b40c7b76c526324928
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

36 lines
No EOL
1.2 KiB
Text

import { base } from './blocks/base';
import { css } from './blocks/css';
import { images } from './blocks/images';
import { pipe } from './utils';
export async function buildConfiguration(config, { hasAppDir, supportedBrowsers, rootDirectory, customAppFile, isDevelopment, isServer, isEdgeRuntime, targetWeb, assetPrefix, sassOptions, productionBrowserSourceMaps, future, transpilePackages, experimental, disableStaticImages, serverSourceMaps }) {
const ctx = {
hasAppDir,
supportedBrowsers,
rootDirectory,
customAppFile,
isDevelopment,
isProduction: !isDevelopment,
isServer,
isEdgeRuntime,
isClient: !isServer,
targetWeb,
assetPrefix: assetPrefix ? assetPrefix.endsWith('/') ? assetPrefix.slice(0, -1) : assetPrefix : '',
sassOptions,
productionBrowserSourceMaps,
transpilePackages,
future,
experimental,
serverSourceMaps: serverSourceMaps ?? false
};
let fns = [
base(ctx),
css(ctx)
];
if (!disableStaticImages) {
fns.push(images(ctx));
}
const fn = pipe(...fns);
return fn(config);
}
//# sourceMappingURL=index.js.map