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

15 lines
283 B
TypeScript
Raw Normal View History

2022-12-11 17:49:06 +00:00
import { defineNuxtConfig } from 'nuxt/config';
export default defineNuxtConfig({
2022-12-28 19:59:58 +00:00
modules: [
'nuxt-graphql-client',
2022-12-29 23:33:04 +00:00
'nuxt-icon',
2022-12-28 19:59:58 +00:00
],
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
});