23 lines
573 B
TypeScript
23 lines
573 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
modules: ['@nuxtjs/tailwindcss', 'shadcn-nuxt'],
|
|
shadcn: {
|
|
prefix: '',
|
|
componentDir: '@/components/ui'
|
|
},
|
|
runtimeConfig: {
|
|
public: {
|
|
apiBase: process.env.NUXT_PUBLIC_API_BASE || 'http://localhost:8000/v1',
|
|
googleClientId: process.env.NUXT_PUBLIC_GOOGLE_CLIENT_ID || '',
|
|
}
|
|
},
|
|
app: {
|
|
head: {
|
|
title: 'Manajemen Bisnis',
|
|
titleTemplate: '%s - Profitra',
|
|
}
|
|
}
|
|
})
|