mirror of
https://github.com/SrIzan10/helium.git
synced 2026-06-06 00:56:58 +00:00
33 lines
694 B
TypeScript
33 lines
694 B
TypeScript
import tailwindcss from "@tailwindcss/vite";
|
|
|
|
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: '2025-07-15',
|
|
devtools: { enabled: true },
|
|
css: ['~/assets/css/tailwind.css'],
|
|
vite: {
|
|
plugins: [
|
|
tailwindcss(),
|
|
],
|
|
},
|
|
modules: ['shadcn-nuxt', '@nuxtjs/color-mode', '@pinia/nuxt'],
|
|
colorMode: {
|
|
classSuffix: ''
|
|
},
|
|
shadcn: {
|
|
/**
|
|
* Prefix for all the imported component
|
|
*/
|
|
prefix: '',
|
|
/**
|
|
* Directory that the component lives in.
|
|
* @default "./components/ui"
|
|
*/
|
|
componentDir: './components/ui'
|
|
},
|
|
nitro: {
|
|
experimental: {
|
|
websocket: true
|
|
}
|
|
},
|
|
}) |