Rocky_Mountain_Vending/.pnpm-store/v10/files/19/50504baf80cb2be6c248117db29a6b0457084b9adcc3b010928b18d2d5e876e9f68ee14dde17199575327f741d752577a1d164f3bf7329d31625a354be379a
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

12 lines
303 B
Text

const formatRelativeLocale = {
lastWeek: "先週のeeeeのp",
yesterday: "昨日のp",
today: "今日のp",
tomorrow: "明日のp",
nextWeek: "翌週のeeeeのp",
other: "P",
};
export const formatRelative = (token, _date, _baseDate, _options) => {
return formatRelativeLocale[token];
};