-
Notifications
You must be signed in to change notification settings - Fork 23
/
nuxt.config.ts
134 lines (129 loc) · 2.75 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
// https://nuxt.com/docs/api/configuration/nuxt-config
import { fetchSbRoutes, getSbToken } from "./utils/sb-functions"
const isProd = process.env.STORYBLOK_PREVIEW_ENABLED === 'false';
export default defineNuxtConfig({
runtimeConfig: {
public: {
isProd,
}
},
devtools: { enabled: false },
devServer: {
port: 3000,
https: {
key: './server.key',
cert: './server.crt'
}
},
nitro: {
prerender: {
crawlLinks: false
}
},
hooks: {
async 'nitro:config'(nitroConfig) {
if (!nitroConfig || nitroConfig.dev) {
return
}
try {
const sbRoutes = await fetchSbRoutes(isProd);
if (nitroConfig.prerender?.routes) {
nitroConfig.prerender.routes = sbRoutes;
}
} catch (error) {
console.error(error)
}
}
},
imports: {
autoImport: false,
},
router: {
options: {
strict: true,
}
},
site: {
url: 'https://www.claudiabdm.com',
trailingSlash: true,
excludeAppSources: true,
},
sitemap: {
autoI18n: true,
},
app: {
head: {
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'link', content: 'rel="apple-touch-icon" href="/logo.svg' },
],
htmlAttrs: {
lang: 'en',
},
},
},
css: [
'~/assets/styles/styles.scss',
],
modules: ['@storyblok/nuxt', '@nuxtjs/i18n', // '@vite-pwa/nuxt',
'@nuxtjs/sitemap', '@nuxtjs/google-fonts', "@nuxt/image"],
storyblok: {
accessToken: getSbToken(isProd),
componentsDir: '~/components',
bridge: !isProd,
},
components: {
global: true,
dirs: ['~/components']
},
i18n: {
baseUrl: 'https://www.claudiabdm.com',
strategy: 'prefix_except_default',
defaultLocale: 'en',
locales: [
{
code: 'en',
iso: 'en',
name: 'English',
},
{
code: 'es',
iso: 'es',
name: 'Español',
},
],
detectBrowserLanguage: false,
trailingSlash: true,
},
googleFonts: {
download: true,
preload: true,
overwriting: true,
families: {
'Open Sans': {
wght: [300, 700],
},
'Jost': {
wght: [700],
}
}
},
// pwa: {
// strategies: 'generateSW',
// workbox: undefined,
// devOptions: {
// enabled: false,
// },
// registerType: 'autoUpdate',
// pwaAssets: {
// config: true,
// },
// manifest: {
// name: 'Claudia Benito: Front-end developer',
// short_name: 'CvFy',
// description: 'I am a front-end developer with a passion for building user friendly and performant SPAs and JAMstack sites.',
// theme_color: '#b8c1ec',
// },
// },
})