-
Notifications
You must be signed in to change notification settings - Fork 0
/
nuxt.config.ts
37 lines (34 loc) · 919 Bytes
/
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
export default defineNuxtConfig({
modules: ["@sentry/nuxt/module"],
sentry: {
sourceMapsUploadOptions: {
org: "steven-eubank",
project: "profile-new-nuxt",
authToken: process.env.VITE_SENTRY_AUTH_TOKEN,
},
},
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',
})
// Debugging: Log the environment variable to ensure it's loaded
console.log('Sentry Auth Token:', process.env.VITE_SENTRY_AUTH_TOKEN);