Rocky_Mountain_Vending/.pnpm-store/v10/files/47/b8bffbdfd1c9378e0d13c80ceb18d749d3c88952c5d1d4ae020934a781c6d7ce913a933898585f87e2b6c6dd4b6ab3de7095ab7f597dbd6d0d3f161ae1481c
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

39 lines
No EOL
1.4 KiB
Text

"use strict";
Object.defineProperty(exports, "__esModule", {
value: true
});
Object.defineProperty(exports, "postProcessHTML", {
enumerable: true,
get: function() {
return postProcessHTML;
}
});
const _nonnullable = require("../lib/non-nullable");
async function postProcessHTML(content, renderOpts) {
const postProcessors = [
process.env.NEXT_RUNTIME !== 'edge' && renderOpts.optimizeCss ? async (html)=>{
// eslint-disable-next-line import/no-extraneous-dependencies
const Critters = require('critters');
// @ts-expect-error -- interopRequireDefault
const cssOptimizer = new Critters({
ssrMode: true,
reduceInlineStyles: false,
path: renderOpts.distDir,
publicPath: `${renderOpts.assetPrefix}/_next/`,
preload: 'media',
fonts: false,
logLevel: process.env.CRITTERS_LOG_LEVEL || (process.env.NODE_ENV === 'production' ? 'warn' : 'info'),
...renderOpts.optimizeCss
});
return await cssOptimizer.process(html);
} : null
].filter(_nonnullable.nonNullable);
for (const postProcessor of postProcessors){
if (postProcessor) {
content = await postProcessor(content);
}
}
return content;
}
//# sourceMappingURL=post-process.js.map