-
Notifications
You must be signed in to change notification settings - Fork 23
/
Copy pathnuxt.config.ts
66 lines (57 loc) · 1.2 KB
/
nuxt.config.ts
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
import tailwindcss from '@tailwindcss/vite';
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
future: {
compatibilityVersion: 4
},
experimental: {
defaults: {
nuxtLink: {
prefetch: true,
prefetchOn: {
visibility: false,
interaction: true
}
}
}
},
devtools: {
enabled: true
},
runtimeConfig: {
shopify: {
storefront: process.env.NUXT_SHOPIFY_STOREFRONT,
accessToken: process.env.NUXT_SHOPIFY_ACCESS_TOKEN,
apiVersion: process.env.NUXT_SHOPIFY_API_VERSION
},
klaviyo: {
publicApiKey: process.env.NUXT_KLAVIYO_PUBLIC_API_KEY,
privateApiKey: process.env.NUXT_KLAVIYO_PRIVATE_API_KEY,
apiVersion: process.env.NUXT_KLAVIYO_API_VERSION
}
},
modules: [
'@pinia/nuxt',
'pinia-plugin-persistedstate/nuxt',
'@vueuse/nuxt',
'@nuxt/eslint',
'@nuxt/icon'
],
icon: {
mode: 'svg',
clientBundle: {
scan: true,
sizeLimitKb: 256
}
},
css: ['@/assets/styles/app.css'],
vite: {
plugins: [tailwindcss()]
},
components: [
{
path: '@/components',
pathPrefix: false
}
]
});