-
Notifications
You must be signed in to change notification settings - Fork 2
/
nuxt.config.ts
60 lines (53 loc) · 1.5 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
import { defineNuxtConfig } from 'nuxt/config';
export default defineNuxtConfig({
modules: ['@pinia/nuxt'],
app: {
head: {
htmlAttrs: {
lang: 'es',
},
link: [
{ rel: 'icon', href: '/favicon.ico', sizes: 'any' },
{ rel: 'icon', href: '/arca-icono.svg', type: 'image/svg+xml' },
{ rel: 'apple-touch-icon', href: '/apple-touch-icon.png' },
{ rel: 'manifest', href: '/sitio.webmanifest' },
{ rel: 'canonical', href: 'https://arca.uniandes.edu.co' },
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
{ rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
{
rel: 'stylesheet',
href: 'https://fonts.googleapis.com/css2?family=Lora:wght@400;600;700&family=Nunito:wght@700;800&family=Unbounded:wght@500&display=swap',
crossorigin: '',
},
],
script: [
{
async: true,
defer: true,
src: 'https://analiticaarca.uniandes.edu.co/script.js',
'data-website-id': 'bc6c51bf-8938-47db-9a3a-228fa9d14ff3',
'data-domains': 'arca.uniandes.edu.co',
},
],
},
},
dir: {
pages: 'paginas',
},
vite: {
css: {
preprocessorOptions: {
scss: {
additionalData: '@use "@/assets/scss/_general.scss" as *;',
},
},
},
},
typescript: {
shim: false,
},
build: {
transpile: ['@enflujo/alquimia'],
},
compatibilityDate: '2024-09-06',
});