schlechtenburg/packages/example-site/nuxt.config.ts

12 lines
257 B
TypeScript
Raw Normal View History

2022-12-11 17:49:06 +00:00
import { defineNuxtConfig } from 'nuxt/config';
export default defineNuxtConfig({
modules: ['nuxt-graphql-client'],
2022-12-12 13:57:45 +00:00
runtimeConfig: {
public: {
2022-12-28 18:46:51 +00:00
GQL_HOST: 'http://localhost:1337/graphql', // overwritten by process.env.GQL_HOST
2022-12-12 13:57:45 +00:00
},
},
2022-12-11 17:49:06 +00:00
});