-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
45 lines (40 loc) · 1.33 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
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: false },
/* NOT WORKED IN NPM RUN GENERATE MODE */
// css: ['~/assets/css/main.min.css'],
// app: {
// head: {
// title: 'Arsyaf.dev',
// meta: [
// { charset: 'utf-8' },
// { name: 'viewport', content: 'width=device-width, initial-scale=1' }
// ],
// link: [
// { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' },
// {
// rel: 'stylesheet',
// href: 'https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap'
// },
// {
// rel: 'stylesheet',
// href: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/css/bootstrap.min.css'
// },
// {
// rel: 'stylesheet',
// href: 'https://cdn.jsdelivr.net/npm/[email protected]/font/bootstrap-icons.min.css'
// },
// ],
// script: [
// { src: 'https://cdn.jsdelivr.net/npm/[email protected]/dist/js/bootstrap.bundle.min.js' },
// ],
// noscript: [{ children: 'This website requires JavaScript.' }],
// }
// }
runtimeConfig: {
satuinApiUrl: process.env.SATUIN_CRM_API_URL,
satuinApiKey: process.env.SATUIN_CRM_API_KEY,
},
nitro: {},
plugins: [],
})