-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.js
More file actions
35 lines (35 loc) · 813 Bytes
/
nuxt.config.js
File metadata and controls
35 lines (35 loc) · 813 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
31
32
33
34
35
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
app: {
head: {
link: [
{ rel: "stylesheet", href: "https://unpkg.com/@appwrite.io/pink" },
{
rel: "stylesheet",
href: "https://unpkg.com/@appwrite.io/pink-icons",
},
],
},
},
devtools: { enabled: true },
modules: [
'@nuxt/content'
],
content: {
documentDriven: true,
highlight: {
theme: 'github-dark'
},
markdown: {
rehypePlugins: [
['rehype-class-names', { 'h1': 'heading-level-4', 'line': 'grid-code-line-number' }],
],
}
},
runtimeConfig: {
public: {
databaseId: process.env.NUXT_IDEAS_DATABASE_ID,
databaseCollectionId: process.env.NUXT_IDEAS_COLLECTION_ID,
},
},
});