Rocky_Mountain_Vending/.pnpm-store/v10/files/30/8c2aff0c119fb3f86a1286c3585c5f168856b5e721d2fe3365776f576d86ad44526f61f4e5cfe558a3f9c34623965e3b5f76902cf97444891a051bcbf47627
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

19 lines
No EOL
983 B
Text

import { getDeploymentIdQueryOrEmptyString } from '../build/deployment-id';
// If we have a deployment ID, we need to append it to the webpack chunk names
// I am keeping the process check explicit so this can be statically optimized
if (process.env.NEXT_DEPLOYMENT_ID) {
const suffix = getDeploymentIdQueryOrEmptyString();
const getChunkScriptFilename = __webpack_require__.u;
__webpack_require__.u = (...args)=>// We enode the chunk filename because our static server matches against and encoded
// filename path.
getChunkScriptFilename(...args) + suffix;
const getChunkCssFilename = __webpack_require__.k;
__webpack_require__.k = (...args)=>getChunkCssFilename(...args) + suffix;
const getMiniCssFilename = __webpack_require__.miniCssF;
__webpack_require__.miniCssF = (...args)=>getMiniCssFilename(...args) + suffix;
}
self.__next_set_public_path__ = (path)=>{
__webpack_public_path__ = path;
};
//# sourceMappingURL=webpack.js.map