-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
51 lines (51 loc) · 1.12 KB
/
nuxt.config.ts
File metadata and controls
51 lines (51 loc) · 1.12 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
40
41
42
43
44
45
46
47
48
49
50
51
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
devtools: { enabled: true },
modules: [
"@nuxt/content",
"@nuxtjs/tailwindcss",
"@nuxt/fonts",
"@vueuse/nuxt",
"@nuxt/image",
"nuxt-fathom",
"@nuxtjs/seo",
],
components: {
dirs: ["~/components", "~/components/content"],
},
content: {
experimental: {
nativeSqlite: true,
},
build: {
markdown: {
highlight: {
theme: "github-dark",
},
},
},
},
app: {
pageTransition: { name: "fade", mode: "out-in" },
},
site: {
url: "https://joshking.dev",
name: "Josh King",
description: "Partnering with founders to create products of the future.",
defaultLocale: "en",
},
sitemap: {
urls: ["/ambient-computing", "predictions-2025", "raycast-train-times"],
},
fathom: {
siteId: "NXIDHQVO",
},
runtimeConfig: {
public: {
x: "https://x.com/josh_fyi",
linkedin: "https://www.linkedin.com/in/josh-king-connect",
github: "https://github.com/kn0wn",
},
},
});