25 lines
634 B
TypeScript
25 lines
634 B
TypeScript
import tailwindcss from '@tailwindcss/vite'
|
|
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2024-11-01',
|
|
devtools: { enabled: false },
|
|
modules: ['@pinia/nuxt'],
|
|
vite: {
|
|
plugins: [tailwindcss()],
|
|
},
|
|
css: ['~/assets/css/main.css'],
|
|
components: [
|
|
{
|
|
path: '~/components',
|
|
pathPrefix: false,
|
|
},
|
|
],
|
|
runtimeConfig: {
|
|
public: {
|
|
apiBase: process.env.NUXT_PUBLIC_API_BASE || 'http://localhost:8000',
|
|
pocketbaseUrl: process.env.NUXT_PUBLIC_POCKETBASE_URL || 'http://localhost:8090',
|
|
stripePublishableKey: process.env.NUXT_PUBLIC_STRIPE_PUBLISHABLE_KEY || '',
|
|
},
|
|
},
|
|
})
|