-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
30 lines (29 loc) · 791 Bytes
/
Copy pathnuxt.config.ts
File metadata and controls
30 lines (29 loc) · 791 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
// https://nuxt.com/docs/api/configuration/nuxt-config
import tailwindcss from "@tailwindcss/vite";
export default defineNuxtConfig({
compatibilityDate: "2025-07-15",
devtools: { enabled: true },
modules: [
"shadcn-nuxt",
"@clerk/nuxt",
"@nuxtjs/color-mode",
"workflow/nuxt",
],
css: ["~/assets/css/tailwind.css"],
shadcn: {
prefix: "",
componentDir: "@/components/ui",
},
clerk: {
skipServerMiddleware: true,
},
vite: {
plugins: [tailwindcss()],
},
runtimeConfig: {
openRouterApiKey: process.env.NUXT_OPENROUTER_API_KEY,
firecrawlApiKey: process.env.NUXT_FIRECRAWL_API_KEY,
screenshotoneAccessKey: process.env.NUXT_SCREENSHOTONE_ACCESS_KEY,
screenshotoneSecretKey: process.env.NUXT_SCREENSHOTONE_SECRET_KEY,
},
});