28 lines
588 B
TypeScript
28 lines
588 B
TypeScript
export default defineNuxtConfig({
|
|
sourcemap: true,
|
|
modules: ['@nuxt/ui-pro', '@nuxt/eslint', '@pinia/nuxt'],
|
|
css: ['~/assets/css/main.css'],
|
|
runtimeConfig: {
|
|
public: {
|
|
clientProxyBasePath: 'NOT_SET',
|
|
serverApiBaseUrl: 'NOT_SET',
|
|
serverApiBasePath: 'NOT_SET',
|
|
auth: {
|
|
redirectUserTo: '/',
|
|
redirectGuestTo: '/login'
|
|
}
|
|
}
|
|
},
|
|
components: [
|
|
{
|
|
path: '~/components',
|
|
pathPrefix: false
|
|
}
|
|
],
|
|
// typescript: {
|
|
// typeCheck: true
|
|
// },
|
|
devtools: { enabled: true },
|
|
compatibilityDate: '2024-11-01'
|
|
})
|