-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
34 lines (32 loc) · 1.08 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
import { defineNuxtConfig } from 'nuxt'
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
ssr: true,
target: 'static',
app: {
head: {
title:'Castillo Junior - Fullstack Web Developer - @cjfswd',
link: [
{
rel: 'stylesheet',
href: 'https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.0/devicon.min.css'
},
{ rel:"icon", type:"image/png", href:"/ico.png"}
],
script: [
{ src: 'https://cdnjs.cloudflare.com/ajax/libs/three.js/r121/three.min.js' },
{ src: 'https://cdn.jsdelivr.net/npm/vanta@latest/dist/vanta.waves.min.js' },
]
}
},
css: ['@/assets/css/tailwind.css','@mdi/font/css/materialdesignicons.min.css'],
modules: ['@nuxt/content', '@nuxtjs/tailwindcss'],
tailwindcss: {
cssPath: '~/assets/css/tailwind.css'
},
vue: {
compilerOptions: {
isCustomElement: (tag) => tag.includes('-')
}
}
})