-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
40 lines (39 loc) · 1.15 KB
/
nuxt.config.ts
File metadata and controls
40 lines (39 loc) · 1.15 KB
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
31
32
33
34
35
36
37
38
39
// https://nuxt.com/docs/api/configuration/nuxt-config
import tailwindcss from "@tailwindcss/vite";
export default defineNuxtConfig({
compatibilityDate: "2025-07-15",
devtools: { enabled: true },
modules: ["@nuxt/fonts", "@nuxt/icon", "@nuxt/scripts", "shadcn-nuxt"],
css: ["./app/assets/css/tailwind.css"],
vite: {
plugins: [tailwindcss()],
},
fonts: {
families: [
{ name: "Space Grotesk", provider: "google", weights: [400, 500, 600, 700] },
{ name: "JetBrains Mono", provider: "google", weights: [400, 500, 700] },
{ name: "Inter", provider: "google", weights: [300, 400, 500, 600] },
],
},
app: {
head: {
title: "Talks — GeniusDynamics",
meta: [
{ name: "description", content: "Conference talks and developer presentations by GeniusDynamics" },
],
},
},
shadcn: {
/**
* Prefix for all the imported component.
*/
prefix: "",
/**
* Directory that the component lives in.
* Will respect the Nuxt aliases.
* @link https://nuxt.com/docs/api/nuxt-config#alias
* @default "@/components/ui"
*/
componentDir: "./app/components/ui",
},
});