Skip to content

πŸ‘¨β€πŸ’» Source code of falcxxdev.cyou

License

Notifications You must be signed in to change notification settings

azukashi/falcxxdev.cyou

Repository files navigation

Project banner Vercel status Repo size Wakatime stats

➑️ Development

πŸ› οΈ Requirements

A node.js >= 18.x setup with pnpm is recommended.

πŸ“¦ Install dependencies

$ pnpm install

πŸ“ Edit Sanity Project ID to yours

// nuxt.config.ts
export default defineNuxtConfig({
    // ...
    image: {
        sanity: {
            projectId: 'your-sanity-projectId',
        },
    },
    sanity: {
        projectId: 'your-sanity-projectId',
    },
    // ...
});

πŸƒ Run it on development server

$ pnpm run dev
# Running on http://localhost:3000
# or
$ pnpm run dev --host=0.0.0.0
# Running on http://localhost:3000
# Running on http://192.x.x.x:3000

⚑ Optimizing for Production

# Server deployment (SSR)
$ pnpm run build

# Static deployment (Pre-rendered [No Server (/api) Route])
$ pnpm run generate

πŸ“ƒοΈ License

Source code distributed under MIT License. See LICENSE for more information.