Rocky_Mountain_Vending/.pnpm-store/v10/files/36/50e647867c64aa9150b0ae1631045c2f15cd12d74bd7018a32daff32f135ce4a413046a6ef6991b3ae3beb5afcea52f7fe6e14b82b57ff9d72a0d558cc41bc
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

11 lines
420 B
Text

/**
* For server-side CSS imports, we need to ignore the actual module content but
* still trigger the hot-reloading diff mechanism. So here we put the content
* inside a comment.
*/
import type webpack from 'webpack';
type NextServerCSSLoaderOptions = {
cssModules: boolean;
};
declare const NextServerCSSLoader: webpack.LoaderDefinitionFunction<NextServerCSSLoaderOptions>;
export default NextServerCSSLoader;