Rocky_Mountain_Vending/.pnpm-store/v10/files/5d/61b71454c574f1ef6168918cb435010e1683d8a65d0581e5d1865855897552ebe9d6229ed8b4df9e31332a6a6851065c64c7a81561273ac5ed350aff7b5505
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

31 lines
931 B
Text

import { notImplemented } from "../_internal/utils.mjs";
import { basename, dirname, extname, format, isAbsolute, join, normalize, parse, relative, resolve, toNamespacedPath } from "pathe";
export { basename, dirname, extname, format, isAbsolute, join, normalize, parse, relative, resolve, toNamespacedPath } from "pathe";
export const sep = "/";
export const delimiter = ":";
const _pathModule = {
sep,
delimiter,
basename,
dirname,
extname,
format,
isAbsolute,
join,
normalize,
parse,
relative,
resolve,
toNamespacedPath,
posix: undefined,
win32: undefined,
_makeLong: (path) => path,
matchesGlob: /*@__PURE__*/ notImplemented(`path.matchesGlob`)
};
_pathModule.posix = _pathModule;
_pathModule.win32 = _pathModule;
export const posix = _pathModule;
export const win32 = _pathModule;
export const _makeLong = _pathModule._makeLong;
export const matchesGlob = _pathModule.matchesGlob;
export default _pathModule;