Polarcraft/web/nuxt.config.ts

29 lines
752 B
TypeScript
Raw Normal View History

2023-04-20 19:22:44 +02:00
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
2023-04-23 10:15:25 +02:00
extends: 'node_modules/@xeovalyte/nuxt-xvui',
devtools: true,
ssr: false,
2023-04-20 19:22:44 +02:00
modules: [
'@nuxtjs/tailwindcss',
2023-04-23 10:15:25 +02:00
'@xeovalyte/nuxt-xvtoast',
2023-04-20 19:22:44 +02:00
'nuxt-icon',
'@nuxtjs/tailwindcss',
2023-04-30 15:28:10 +02:00
'@vueuse/nuxt'
2023-04-23 10:15:25 +02:00
],
runtimeConfig: {
discordId: '',
discordSecret: '',
2023-05-06 13:09:46 +02:00
discordHost: '',
2023-04-23 10:15:25 +02:00
jwtSecret: '',
2023-04-23 17:16:53 +02:00
dbUrl: '',
2023-04-25 15:51:20 +02:00
mineckerHost: '',
mineckerApiKey: '',
2023-05-06 13:09:46 +02:00
rconPassword: '',
rconPort: '25575',
rconHost: 'localhost',
2023-04-25 15:51:20 +02:00
public: {
redirectUrl: 'https://discord.com/api/oauth2/authorize?client_id=1052974736432443432&redirect_uri=http%3A%2F%2Flocalhost%3A3000%2Fapi%2Fauth&response_type=code&scope=identify',
}
2023-04-23 10:15:25 +02:00
}
2023-04-20 19:22:44 +02:00
})