-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
84 lines (83 loc) · 1.73 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: "2024-04-03",
css: ["~/assets/css/main.css"],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
devtools: { enabled: true },
modules: [
"@nuxt/icon",
"nuxtjs-naive-ui",
"@nuxt/ui",
"@nuxt/fonts",
"@sidebase/nuxt-auth",
"@pinia/nuxt",
"@pinia-plugin-persistedstate/nuxt",
"@nuxtjs/sitemap",
"@vite-pwa/nuxt",
],
colorMode: {
preference: "system", // default value of $colorMode.preference
},
fonts: {
families: [
{
name: "Poppins",
weights: [100, 200, 300, 400, 500, 600, 700, 800, 900],
provider: "google",
},
{
name: "Matemasie",
provider: "google",
},
],
},
auth: {
globalAppMiddleware: true,
provider: {
type: "authjs",
},
},
site: {
url: 'https://myurlbookmarker.vercel.app',
name: 'BookMarker',
},
pwa: {
strategies: "generateSW",
registerType: "autoUpdate",
devOptions: {
enabled: false,
},
manifest: {
name: "BookMarker",
short_name: "BookMarker",
start_url: "/",
description: "An awesome bookmark manager.",
categories: ["Bookmark Manager"],
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",
},
],
lang: "en",
display: "standalone",
theme_color: "#000000",
},
}
});