-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
113 lines (112 loc) · 2.11 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
//import version from './package.json'
import { version } from './package.json';
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
$development: {
devtools: { enabled: true },
runtimeConfig: {
public: {
devCompileServer: 'http://localhost:3030',
},
},
},
modules: [
'@pinia/nuxt',
'@vite-pwa/nuxt',
'@vueuse/nuxt',
],
typescript: {
strict: true
},
css: [
'vuetify/styles',
'@mdi/font/css/materialdesignicons.min.css',
'~/assets/global.scss'
],
build: {
transpile: ['vuetify'],
},
vite: {
define: {
'process.env.DEBUG': false,
},
},
components: [
{
path: '~/components',
pathPrefix: false,
},
],
imports: {
dirs: ['./stores'],
},
routeRules: {
'/': { prerender: true },
'/**': { prerender: true },
'/code/': { ssr: false },
'/code/**': { ssr: false },
},
nitro: {
preset: 'cloudflare_pages',
prerender: {
crawlLinks: true,
},
},
runtimeConfig: {
public: {
version,
},
},
pwa: {
registerType: 'autoUpdate',
manifest: {
name: 'DuinoApp',
theme_color: '#5DA797',
icons: [
{
src: 'pwa-64x64.png',
sizes: '64x64',
type: 'image/png'
},
{
src: 'pwa-192x192.png',
sizes: '192x192',
type: 'image/png'
},
{
src: 'pwa-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'any',
},
{
src: 'maskable-icon-512x512.png',
sizes: '512x512',
type: 'image/png',
purpose: 'maskable',
}
],
},
},
app: {
head: {
title: 'DuinoApp',
link: [
{
rel: 'icon',
href: '/favicon.ico',
sizes: 'any',
},
{
rel: 'icon',
href: '/duinoapp.svg',
type: 'image/svg+xml',
},
{
rel: 'apple-touch-icon',
href: '/apple-touch-icon-180x180.png',
},
],
},
},
});