-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
48 lines (45 loc) · 1.07 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
export default defineNuxtConfig({
modules: ["@sentry/nuxt/module", '@nuxt/content'],
sentry: {
sourceMapsUploadOptions: {
org: "steven-eubank",
project: "profile-new-nuxt",
authToken: process.env.VITE_SENTRY_AUTH_TOKEN,
},
},
ignore: [
'brag-docs',
],
css: ['@/assets/css/main.css'],
postcss: {
plugins: {
'postcss-import': {},
'tailwindcss/nesting': {},
'tailwindcss': {},
'autoprefixer': {},
},
},
app: {
head: {
title: 'Steven Eubank - Portfolio',
meta: [
{ name: 'description', content: 'Portfolio and CV of Steven Eubank' },
{ name: 'keywords', content: 'Product Manager, Solution Architect, Portfolio' }
],
},
},
plugins: [
'~/plugins/fontawesome.js',
],
compatibilityDate: '2024-08-31',
content: {
markdown: {
toc: true,
anchorLinks: true,
remarkPlugins: [],
rehypePlugins: []
}
}
})
// Debugging: Log the environment variable to ensure it's loaded
console.log('Sentry Auth Token:', process.env.VITE_SENTRY_AUTH_TOKEN);