-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
41 lines (41 loc) · 935 Bytes
/
nuxt.config.ts
File metadata and controls
41 lines (41 loc) · 935 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
29
30
31
32
33
34
35
36
37
38
39
40
41
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
app: {
head: {
charset: 'utf-16',
viewport: 'width=device-width, initial-scale=1',
title: 'InActually',
meta: [
{ name: 'description', content: process.env.npm_package_description || '' }
],
link: [{
rel: 'icon',
type: 'image/x-icon',
href: 'inACTually_icon.ico'
}]
}
},
css: ['@/assets/style/main.scss', 'primevue/resources/themes/aura-light-green/theme.css', 'primeicons/primeicons.css'],
imports: {
dirs: [
'composables/**',
]
},
modules: [
'nuxt-primevue'
],
components: [
{
path: '~/components',
// pathPrefix: false,
},
],
devServer: {
// https: {
// key: 'localhost-key.pem',
// cert: 'localhost.pem'
// }
},
compatibilityDate: '2025-08-13'
})