-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
29 lines (28 loc) · 963 Bytes
/
nuxt.config.ts
File metadata and controls
29 lines (28 loc) · 963 Bytes
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
import { defineNuxtConfig } from 'nuxt'
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
app: {
head: {
title: 'Place2Die',
script: [
{
src: 'https://kit.fontawesome.com/91d11c3d0b.js'
}
]
}
},
runtimeConfig: {
// The private keys which are only available within server-side
FIREBASE_API_KEY: process.env.FIREBASE_API_KEY,
FIREBASE_PROJECT_ID: process.env.FIREBASE_PROJECT_ID,
SENTRY_DSN: process.env.SENTRY_DSN,
VERSION: process.env.VERSION,
// Keys within public, will be also exposed to the client-side
public: {
FIREBASE_API_KEY: process.env.FIREBASE_API_KEY,
FIREBASE_PROJECT_ID: process.env.FIREBASE_PROJECT_ID,
SENTRY_DSN: process.env.SENTRY_DSN,
VERSION: process.env.VERSION
}
}
})