Initial website implementation with Hero section
This commit is contained in:
17
nuxt.config.ts
Normal file
17
nuxt.config.ts
Normal file
@ -0,0 +1,17 @@
|
||||
import tailwindcss from '@tailwindcss/vite'
|
||||
|
||||
export default defineNuxtConfig({
|
||||
compatibilityDate: '2025-07-15',
|
||||
devtools: { enabled: true },
|
||||
css: ['~/assets/css/tailwind.css'],
|
||||
modules: ['shadcn-nuxt', '@nuxt/image'],
|
||||
vite: {
|
||||
plugins: [
|
||||
tailwindcss(),
|
||||
],
|
||||
},
|
||||
shadcn: {
|
||||
prefix: '',
|
||||
componentDir: '@/components/ui'
|
||||
}
|
||||
})
|
||||
Reference in New Issue
Block a user