Polarcraft/webv2/nuxt.config.ts
Xeovalyte c8a4507253
Some checks failed
Build and Deploy / Deploy Web (push) Failing after 1s
Build and Deploy / Deploy Discord Bot (push) Failing after 1s
feat: Added dashboard welcome message
2023-06-12 16:48:38 +02:00

28 lines
686 B
TypeScript

// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
ssr: false,
typescript: {
typeCheck: true
},
nitro: {
plugins: ['~/server/index.ts']
},
modules: [
'@nuxthq/ui',
'nuxt-icon',
'@nuxtjs/eslint-module'
],
runtimeConfig: {
discordClientId: '',
discordClientSecret: '',
oauthRedirectUri: 'http://localhost:3000/api/auth',
jwtSecret: '',
mongoUrl: '',
mongoUser: '',
mongoPass: '',
public: {
oauthUrl: 'https://discord.com/api/oauth2/authorize?client_id=1052974736432443432&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fapi%2Fauth&response_type=code&scope=identify'
}
}
})