forked from urvishpatelce/lxd-app
17 lines
472 B
TypeScript
17 lines
472 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-05-15',
|
|
devtools: { enabled: true },
|
|
runtimeConfig: {
|
|
public: {
|
|
siteUrl: process.env.SITE_URL,
|
|
backendUrl: process.env.BACKEND_URL,
|
|
apiVersion: process.env.API_VERSION,
|
|
apiUrl: `${process.env.BACKEND_URL}/${process.env.API_VERSION}`
|
|
}
|
|
},
|
|
css: [
|
|
'~/assets/css/common.css' // Path to your global CSS file
|
|
],
|
|
})
|