-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
25 lines (25 loc) · 959 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
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
app: {
head: {
htmlAttrs: {
lang: 'en'
},
charset: 'utf-8',
title: 'cattocss',
meta: [
{ name: 'description', content: 'cattocss is a CSS animations library online where you can use the source code without installing dependencies in your web project.' },
{ name: 'keywords', content: "cattocss, CATTO, catto.css, catto-css, library, libreria, css library, animations, web, css, CSS, HTML5, HTML, css-animations, animaciones, website, sitio web, gatocss, computer, software, avalojandro, Avalojandro" },
{ name:'language', content:'en' },
],
link: [{ rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }]
},
},
css: ['~/assets/css/main.css'],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
})