Rocky_Mountain_Vending/.pnpm-store/v10/files/a2/83aa2dd75be697a6cf2503d098f38f70f672aea7d164fae9d382e1ac088a90c360668c99284d89b796c19485598ed8bebbf723cd0de63f68e3ebbc19607249
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

15 lines
No EOL
1.1 KiB
Text

import { bold, cyan } from '../../../../../lib/picocolors';
export function getGlobalImportError() {
return `Global CSS ${bold('cannot')} be imported from files other than your ${bold('Custom <App>')}. Due to the Global nature of stylesheets, and to avoid conflicts, Please move all first-party global CSS imports to ${cyan('pages/_app.js')}. Or convert the import to Component-Level CSS (CSS Modules).\nRead more: https://nextjs.org/docs/messages/css-global`;
}
export function getGlobalModuleImportError() {
return `Global CSS ${bold('cannot')} be imported from within ${bold('node_modules')}.\nRead more: https://nextjs.org/docs/messages/css-npm`;
}
export function getLocalModuleImportError() {
return `CSS Modules ${bold('cannot')} be imported from within ${bold('node_modules')}.\nRead more: https://nextjs.org/docs/messages/css-modules-npm`;
}
export function getCustomDocumentError() {
return `CSS ${bold('cannot')} be imported within ${cyan('pages/_document.js')}. Please move global styles to ${cyan('pages/_app.js')}.`;
}
//# sourceMappingURL=messages.js.map