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>
9 lines
476 B
Text
9 lines
476 B
Text
// @ts-expect-error typescript doesn't handle ./index.astro properly, but it's needed to generate types
|
|
// eslint-disable-next-line import/no-default-export, no-useless-rename -- Exporting everything doesn't yield the desired outcome
|
|
export { default as default } from './index.astro';
|
|
export type {
|
|
AnalyticsProps,
|
|
BeforeSend,
|
|
BeforeSendEvent,
|
|
// @ts-expect-error this filed is copied to dist, so it's ok to reference the generated index.d.ts
|
|
} from '../index.d.ts';
|