-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
87 lines (79 loc) · 2.09 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
// @ts-ignore - not exists types for honeybadger-io/rollup-plugin
import HoneybadgerSourceMapPlugin from "@honeybadger-io/rollup-plugin";
export default defineNuxtConfig({
future: {
compatibilityVersion: 4,
},
dir: {
app: "app",
},
app: {
head: {
charset: "utf-8",
viewport: "initial-scale=1",
meta: [{ name: "description", content: "Pro Task" }],
link: [{ rel: "icon", type: "image/x-svg", href: "/favicon.svg" }],
},
pageTransition: { name: "page", mode: "out-in" },
layoutTransition: { name: "layout", mode: "out-in" },
},
vuefire: {
auth: { enabled: true },
config: {
apiKey: process.env.FIREBASE_API_KEY,
authDomain: process.env.FIREBASE_AUTH_DOMAIN,
projectId: process.env.FIREBASE_PROJECT_ID,
appId: process.env.FIREBASE_APP_ID,
storageBucket: process.env.FIREBASE_STORAGE_BUCKET,
messagingSenderId: process.env.FIREBASE_MESSAGING_SENDER_ID,
},
},
pwa: {
registerType: "autoUpdate",
manifest: {
name: "Pro Task",
short_name: "Pro Task",
theme_color: "#5030E5",
icons: [
{ src: "pwa-192x192.png", sizes: "192x192", type: "image/png" },
{ src: "pwa-512x512.png", sizes: "512x512", type: "image/png" },
{
src: "pwa-512x512.png",
sizes: "512x512",
type: "image/png",
purpose: "any maskable",
},
],
},
},
imports: {
dirs: ["stores"],
},
sourcemap: { client: true },
vite: {
build: {
sourcemap: true,
rollupOptions: {
output: {
sourcemap: true,
},
},
},
plugins: [
HoneybadgerSourceMapPlugin({
apiKey: process.env.HONEYBADGER_API_KEY,
assetsUrl: "https://protask.gabrielcaiana.com",
revision: process.env.VERCEL_GIT_COMMIT_SHA || new Date().toISOString(),
}),
],
},
runtimeConfig: {
public: {
honeybadger: {
apiKey: process.env.HONEYBADGER_API_KEY,
environment: process.env.HONEYBADGER_ENVIRONMENT,
},
},
},
compatibilityDate: "2025-03-23",
});