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-20 19:22:44 +02:00
|
|
|
})
|