-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
364 lines (322 loc) · 14.6 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
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
// https://nuxt.com/docs/api/configuration/nuxt-config
import { type ContentType } from '@/types/ContentType';
import { usefetchProjectsPaginated } from './composables/projectsData';
import fs from 'fs';
import path from 'path';
/*
// Ruta donde se guardarán las rutas generadas
const cachedRoutesPath = path.resolve('cachedRoutes.json');
// Función para generar y guardar las rutas
const fetchAndGenerateRoutes = async (): Promise<void> => {
console.log('Generando rutas dinámicas');
const projects: ContentType[] = await usefetchProjectsPaginated();
const urls: string[] = projects.flatMap((project: ContentType) => {
const mainProjectUrl = `/project/${project.slug}`;
const pageUrls = project.pages_slug?.map((pageSlug: string) =>
`/project/${project.slug}/${pageSlug}`
) || [];
return [mainProjectUrl, ...pageUrls];
});
fs.writeFileSync(cachedRoutesPath, JSON.stringify(['/', ...urls]));
console.log(`Archivo '${cachedRoutesPath}' generado con éxito.`);
};
// Rutas predeterminadas (vacías)
let cachedRoutes: string[] = [];
// Función para leer las rutas desde el archivo caché
const readCachedRoutes = () => {
if (fs.existsSync(cachedRoutesPath)) {
console.log("Leyendo rutas desde 'cachedRoutes.json'.");
cachedRoutes = JSON.parse(fs.readFileSync(cachedRoutesPath, 'utf-8'));
} else {
console.warn(`Advertencia: No se encontró 'cachedRoutes.json'. Usando un array vacío.`);
}
};
// Genera las rutas y luego lee el archivo caché
//await fetchAndGenerateRoutes();
//readCachedRoutes();
//console.log('Termina rutas');
*/
// Define la ruta del archivo JSON donde se almacenarán las rutas
const cachedRoutesPath = path.resolve('cachedRoutes.json');
export default defineNuxtConfig({
ssr: true,
devtools: { enabled: true },
plugins: [
],
runtimeConfig: {
captcha: {
secretKey: process.env.CAPTCHA_SITE_PRIVATE_KEY,
},
public: {
app: {
name: process.env.APP_NAME,
description: process.env.APP_DESCRIPTION,
url: process.env.APP_URL,
domain: process.env.APP_DOMAIN,
currentLocale: 'es',
locale: process.env.APP_LOCALE,
localeAlternate: process.env.APP_LOCALE_ALTERNATE,
},
api: {
domain: process.env.API_DOMAIN_URL,
base: process.env.API_BASE_URL,
contact: process.env.API_PATH_CONTACT,
},
captcha: {
siteKey: process.env.CAPTCHA_SITE_KEY,
}
}
},
app: {
head: {
title: 'Portfolio de Raúl Caro Pastorino Web Developer (@raupulus)',
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
meta: [
{ name: 'description', content: 'Portfolio de presentación con la información de Raúl Caro Pastorino (@raupulus) Desarrollador Web (Chipiona, Andalucía, Cádiz, España)' },
{ name: 'application-name', content: 'www.raupulus.dev' },
{ name: 'keywords', content: 'Raúl Caro Pastorino, raupulus, desarrollador, desarrollador web, web developer, iot, maker, php, laravel, vue, vue3, vuejs, nuxt, js, javascript, python, bash, linux, Raul Caro Pastorino' },
{ name: 'author', content: 'Raúl Caro Pastorino' },
{ name: 'twitter:card', content: 'summary_large_image' },
{ name: 'twitter:site', content: '@raupulus' },
{ name: 'twitter:creator', content: '@raupulus' },
{ name: 'twitter:title', content: 'Raúl Caro Pastorino' },
{ name: 'twitter:description', content: 'Desarrollador Web Backend, Laravel & Vuejs (@raupulus)' },
{ name: 'twitter:image', content: 'https://raw.githubusercontent.com/raupulus/raupulus/master/images/banner.webp' },
{ name: 'og:title', content: 'Raúl Caro Pastorino' },
{ name: 'og:type', content: 'website' },
{ name: 'og:url', content: 'https://raupulus.dev' },
{ name: 'og:image', content: 'https://raw.githubusercontent.com/raupulus/raupulus/master/images/banner.webp' },
{ name: 'og:description', content: 'Desarrollador Web Backend, Laravel & Vuejs (@raupulus)' },
{ name: 'og:site_name', content: 'Portfolio de Raúl Caro Pastorino' },
{ name: 'og:locale', content: 'es_ES' },
{ name: 'og:locale:alternate', content: 'en_EN' },
],
htmlAttrs: { dir: 'ltr', lang: 'es' },
link: [
{
rel: 'icon',
type: 'image/x-icon',
href: '/favicons/favicon.ico'
},
{ rel: 'apple-touch-icon', sizes: '180x180', href: '/favicons/apple-touch-icon.png' },
{ rel: 'icon', type: 'image/png', sizes: '32x32', href: '/favicons/favicon-32x32.png' },
{ rel: 'icon', type: 'image/png', sizes: '16x16', href: '/favicons/favicon-16x16.png' },
{ rel: 'manifest', href: '/favicons/site.webmanifest' },
// Librerías externas
// { rel: 'stylesheet', href: 'https://awesome-lib.css' }
],
script: [
//{ src: 'https://awesome-lib.js' }
],
// please note that this is an area that is likely to change
style: [
// <style type="text/css">:root { color: red }</style>
//{ children: ':root { color: red }', type: 'text/css' }
],
noscript: [
// <noscript>JavaScript is required</noscript>
//{ children: 'JavaScript is required' }
]
},
},
css: [
'@/assets/css/vars.css',
'@/assets/css/fonts.css',
'@/assets/css/theme.css',
'@/assets/css/styles.css',
],
//plugins: [{ src: '~/plugins/vuejs-medium-editor', ssr: false }]
typescript: {
strict: true,
typeCheck: true,
},
modules: ["@nuxt/image", '@nuxtjs/sitemap', 'nuxt-gtag', '@dargmuesli/nuxt-cookie-control'],
image: {
provider: 'ipx',
dir: 'public', // Directorio base donde se guardan las imágenes
domains: ['localhost', 'raupulus.dev'],
},
nitro: {
preset: 'static',
prerender: {
routes: [],
//routes: ['/projects/slug-contenido/slug-page1',],
},
hooks: {
async 'prerender:routes'(routes: Set<string>) {
console.log('Generando rutas dinámicas');
// Obtener los proyectos paginados
const projects = await usefetchProjectsPaginated();
const urls = projects.flatMap((project) => {
const mainProjectUrl = `/projects/${project.slug}`;
const pageUrls = project.pages_slug?.map((pageSlug) =>
`/projects/${project.slug}/${pageSlug}`
) ?? [];
return [mainProjectUrl, ...pageUrls];
});
// Si el archivo ya existe, se eliminará antes de generar uno nuevo
if (fs.existsSync(cachedRoutesPath)) {
fs.unlinkSync(cachedRoutesPath);
}
// Escribir las rutas generadas en el archivo JSON
fs.writeFileSync(cachedRoutesPath, JSON.stringify(['/', ...urls], null, 2));
// Añadir cada URL generada a las rutas de prerender
urls.forEach(url => routes.add(url));
console.log('Rutas generadas:');
urls.forEach(url => console.log(url));
},
},
},
site: {
url: process.env.APP_URL,
name: process.env.APP_NAME
},
sitemap: {
exclude: [
'/admin/**',
'/login'
],
urls: async (): Promise<any> => {
const projects: ContentType[] = await usefetchProjectsPaginated();
const urls = projects.flatMap((project: ContentType) => {
// URL para el proyecto principal
const mainProjectUrl = {
loc: `/projects/${project.slug}`,
changefreq: 'weekly',
priority: 0.9,
lastmod: project.updated_at
};
// URLs para las páginas del proyecto
let pageUrls = project.pages_slug?.map((pageSlug: string) => ({
loc: `/projects/${project.slug}/${pageSlug}`,
changefreq: 'weekly',
priority: 0.7,
lastmod: project.updated_at
}));
if (!pageUrls) {
pageUrls = [];
}
return [mainProjectUrl, ...pageUrls];
});
return urls;
},
defaults: {
changefreq: 'weekly',
priority: 0.5,
lastmod: new Date()
},
},
// https://github.com/johannschopplich/nuxt-gtag#readme
gtag: {
id: process.env.GTAG_ID,
enabled: process.env.NODE_ENV === 'production',
initMode: 'auto',
initCommands: [
// Setup up consent mode
['consent', 'default', {
ad_user_data: 'granted',
ad_personalization: 'denied',
ad_storage: 'denied',
analytics_storage: 'denied',
wait_for_update: 500,
}]
]
},
cookieControl: {
barPosition: 'bottom-right', // Posición del banner de cookies
closeModalOnClickOutside: true, // Cerrar modal al hacer clic fuera
colors: {
barBackground: '#000', // Fondo del banner
barButtonBackground: '#fff', // Fondo del botón del banner
barButtonColor: '#000', // Color del texto del botón del banner
barButtonHoverBackground: '#333', // Fondo del botón al pasar el ratón
barButtonHoverColor: '#fff', // Color del texto del botón al pasar el ratón
barTextColor: '#fff', // Color del texto del banner
checkboxActiveBackground: '#000', // Fondo del checkbox activo
checkboxActiveCircleBackground: '#fff', // Fondo del círculo del checkbox activo
checkboxDisabledBackground: '#ddd', // Fondo del checkbox deshabilitado
checkboxDisabledCircleBackground: '#fff', // Fondo del círculo del checkbox deshabilitado
checkboxInactiveBackground: '#000', // Fondo del checkbox inactivo
checkboxInactiveCircleBackground: '#fff', // Fondo del círculo del checkbox inactivo
controlButtonBackground: '#fff', // Fondo del botón de control
controlButtonHoverBackground: '#000', // Fondo del botón de control al pasar el ratón
controlButtonIconColor: '#000', // Color del icono del botón de control
controlButtonIconHoverColor: '#fff', // Color del icono del botón de control al pasar el ratón
focusRingColor: '#808080', // Color del anillo de enfoque
modalBackground: '#fff', // Fondo del modal
modalButtonBackground: '#000', // Fondo del botón del modal
modalButtonColor: '#fff', // Color del texto del botón del modal
modalButtonHoverBackground: '#333', // Fondo del botón del modal al pasar el ratón
modalButtonHoverColor: '#fff', // Color del texto del botón del modal al pasar el ratón
modalOverlay: '#000', // Superposición del modal
modalOverlayOpacity: 0.8, // Opacidad de la superposición del modal
modalTextColor: '#000', // Color del texto del modal
modalUnsavedColor: '#fff', // Color del texto no guardado del modal
},
cookies: {
necessary: [
{
id: 'necessary', // ID necesario de la cookie
name: {
en: 'Necessary Cookies',
es: 'Cookies Necesarias'
},
description: {
en: 'These cookies are essential for the website to function properly.',
es: 'Estas cookies son esenciales para el correcto funcionamiento del sitio web.',
},
// Lista de enlaces
links: {
'/privacy': 'Política de Privacidad',
},
},
],
optional: [
{
id: 'google-analytics', // ID opcional de la cookie
name: {
en: 'Analytics Cookies',
es: 'Cookies de Analítica'
},
description: {
en: 'These cookies provide analytic data about site traffic.',
es: 'Estas cookies proporcionan datos analíticos sobre el tráfico del sitio.',
},
isPreselected: true,
//src: 'https://example.com/analytics/js?id=<API-KEY>',
//targetCookieIds: ['_ga', '_gid', 'google-analytics'], // IDs de cookies objetivo
},
],
},
cookieExpiryOffsetMs: 1000 * 60 * 60 * 24 * 365, // Un año
cookieNameIsConsentGiven: 'ncc_c', // Nombre de la cookie para consentimiento dado
cookieNameCookiesEnabledIds: 'ncc_e', // Nombre de la cookie para cookies habilitadas
cookieOptions: {
path: '/',
sameSite: 'strict',
},
isAcceptNecessaryButtonEnabled: false, // Mostrar botón "Aceptar necesarias"
isControlButtonEnabled: true, // Mostrar botón de control
isIframeBlocked: false, // No bloquear iframes
isModalForced: false, // No forzar mostrar el modal
// Switch to toggle the separation of cookie name and description in the configuration modal by a dash.
isDashInDescriptionEnabled: true,
locales: ['es', 'en'], // Idiomas
localeTexts: {
es: {
save: 'Recordar',
acceptAll: 'Aceptar Todas',
declineAll: 'Rechazar Todas',
manageCookies: 'Gestionar Cookies',
},
en: {
save: 'Remember',
acceptAll: 'Accept All',
declineAll: 'Decline All',
manageCookies: 'Manage Cookies',
}
}
},
compatibilityDate: '2024-09-10'
})