forked from Bootstrap-Academy/frontend
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathnuxt.config.ts
More file actions
28 lines (27 loc) · 730 Bytes
/
nuxt.config.ts
File metadata and controls
28 lines (27 loc) · 730 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
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
ssr: false,
app: {
head: {
title: "Bootstrap Academy",
},
pageTransition: { name: 'page', mode: 'out-in' },
layoutTransition: { name: 'layout', mode: 'out-in' },
},
css: ['~/assets/css/tailwind.css'],
postcss: {
plugins: {
tailwindcss: {},
autoprefixer: {},
},
},
runtimeConfig: {
public: {
BASE_API_URL: 'https://api.test.bootstrap.academy',
BASE_WEB_URL: 'https://test.bootstrap.academy',
Gleap_API_KEY: '8TVLuULNmWxZHIifA1PW6TYHUCKEb5so',
Vue3ReCaptcha_SITE_KEY: '6Ldb070iAAAAAKsAt_M_ilgDbnWcF-N_Pj2DBBeP',
NODE_ENV: 'production',
},
},
});