-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
46 lines (45 loc) · 1.12 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
import { fileURLToPath } from 'url'
import { defineNuxtConfig } from 'nuxt'
export default defineNuxtConfig({
app: {
head: {
title: 'Astel UI',
htmlAttrs: {
lang: 'en',
},
charset: 'utf-8',
viewport: 'width=device-width, initial-scale=1',
meta: [
{
hid: 'description',
name: 'description',
content: 'A Sleek and minimal vue 3 UI component library',
},
{ hid: 'og:title', name: 'og:title', content: 'Astel UI' },
{ name: 'format-detection', content: 'telephone=no' },
],
link: [
{
rel: 'stylesheet',
type: 'text/css',
href: 'https://fonts.googleapis.com/css2?family=Inter:wght@100;200;300;400;500;600;700;800;900',
},
],
},
},
alias: {
astel: fileURLToPath(new URL('./library', import.meta.url)),
},
content: {
highlight: {
theme: 'github-light',
},
},
modules: ['@nuxt/content'],
buildModules: ['@nuxtjs/tailwindcss', '@pinia/nuxt'],
srcDir: 'src/',
components: ['~/src/components'],
server: {
host: '0.0.0.0',
},
})