-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnuxt.config.ts
29 lines (27 loc) · 872 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
import { defineNuxtConfig } from 'nuxt';
// https://v3.nuxtjs.org/api/configuration/nuxt.config
export default defineNuxtConfig({
//from Getting Started
typescript:{
shim:false
},
//modules: ['@nuxtjs/tailwindcss','nuxt-graphql-client'],
modules: ['@nuxtjs/tailwindcss'],
// runtimeConfig:{
// public:{
// 'graphql-client':{
// clients:{
// orionx:{
// host: process.env.GQL_ORIONX_DOMAIN,
// token: {
// name: 'X-ORIONX-APIKEY',
// value: process.env.GQL_ORIONX_APIKEY,
// type: null
// },
// retainToken: true,
// }
// }
// }
// }
// }
});