Prepare for CI

This commit is contained in:
2024-05-08 23:42:23 +02:00
parent b1f6e7016a
commit b57b2db2ad
6 changed files with 313 additions and 183 deletions
+7 -1
View File
@@ -1,5 +1,11 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
devtools: { enabled: true },
ssr: false
ssr: false,
runtimeConfig: {
public: {
websocketEndpoint: 'ws://127.0.0.1:8765', // can be overridden by NUXT_PUBLIC_API_BASE environment variable
discordLoginEndpoint: ''
}
},
})