forked from waylaidwanderer/PandoraAI
-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.js
48 lines (48 loc) · 1.16 KB
/
nuxt.config.js
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
47
48
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
runtimeConfig: {
public: {
apiBaseUrl: process.env.API_BASE_URL,
},
},
imports: {
dirs: ['stores'],
},
modules: [
'@nuxtjs/tailwindcss',
'@kevinmarrec/nuxt-pwa',
'nuxt-icon',
'@pinia/nuxt',
'@vueuse/nuxt',
],
css: [
{
src: '~/node_modules/highlight.js/styles/base16/dracula.css',
lang: 'css',
},
],
pinia: {
autoImports: ['defineStore', 'acceptHMRUpdate'],
},
pwa: {
icon: {
source: './public/icon.png',
maskablePadding: 0,
},
meta: {
name: 'PandoraAI',
description: 'Multiple AI Web Chat Client',
theme_color: '#7733ff',
mobileAppIOS: true,
nativeUI: true,
},
manifest: {
name: 'PandoraAI',
description: 'Multiple AI Web Chat Client',
background_color: '#7733ff',
lang: 'en',
useWebmanifestExtension: false,
},
},
});