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-23 10:15:25 +02:00
|
|
|
],
|
|
|
|
runtimeConfig: {
|
|
|
|
discordId: '',
|
|
|
|
discordSecret: '',
|
|
|
|
jwtSecret: '',
|
2023-04-23 17:16:53 +02:00
|
|
|
dbUrl: '',
|
2023-04-25 15:51:20 +02:00
|
|
|
mineckerHost: '',
|
|
|
|
mineckerApiKey: '',
|
|
|
|
mincecraftContainer: 'mc-school',
|
|
|
|
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
|
|
|
})
|