-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
28 lines (27 loc) · 963 Bytes
/
nuxt.config.ts
File metadata and controls
28 lines (27 loc) · 963 Bytes
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
import { defineNuxtConfig } from 'nuxt3'
// https://v3.nuxtjs.org/docs/directory-structure/nuxt.config
export default defineNuxtConfig({
meta: {
htmlAttrs: {
lang: 'en'
},
title: 'Invoice App',
lang: 'en',
link: [
{ rel: "stylesheet", href: "https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/css/bootstrap.min.css" },
{ rel: "stylesheet", href: "https://fonts.googleapis.com/css2?family=Spartan:wght@300;400;500;600;700;900&display=swap" },
{ rel: 'icon', type: 'image/x-icon', href: '/favicon-32x32.png' }
],
script: [
{ src: 'https://cdn.jsdelivr.net/npm/@popperjs/core@2.9.2/dist/umd/popper.min.js' },
{ src: 'https://cdn.jsdelivr.net/npm/bootstrap@5.0.2/dist/js/bootstrap.bundle.min.js' },
]
},
buildModules: [
'@pinia/nuxt',
],
"env": {
"browser": true,
"node": true
},
})