12 lines
326 B
TypeScript
12 lines
326 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
devtools: { enabled: true },
|
|
ssr: false,
|
|
runtimeConfig: {
|
|
public: {
|
|
websocketEndpoint: 'ws://127.0.0.1:8765', // can be overridden by NUXT_PUBLIC_API_BASE environment variable
|
|
discordLoginEndpoint: ''
|
|
}
|
|
},
|
|
})
|