-
Notifications
You must be signed in to change notification settings - Fork 16
/
nuxt.config.ts
50 lines (44 loc) · 989 Bytes
/
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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
future: {
compatibilityVersion: 4
},
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',
'@nuxtjs/tailwindcss',
'@vueuse/nuxt',
'@nuxt/eslint',
'@nuxt/fonts',
'@nuxt/icon'
],
fonts: {
defaults: {
weights: [400, 500, 600]
}
},
tailwindcss: {
cssPath: '@/assets/styles/app.css'
},
components: [
{
path: '@/components',
pathPrefix: false
}
]
});