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>
11 lines
321 B
JavaScript
Executable file
11 lines
321 B
JavaScript
Executable file
#!/usr/bin/env node
|
|
const { Log } = require(".");
|
|
|
|
const log = new Log();
|
|
log.error(
|
|
[
|
|
"`miniflare@3` no longer includes a CLI. Please use `npx wrangler dev` instead.",
|
|
"As of `wrangler@3`, this will use Miniflare by default.",
|
|
"See https://miniflare.dev/get-started/migrating for more details.",
|
|
].join("\n")
|
|
);
|