mirror of
https://github.com/LukeHagar/better-auth.git
synced 2025-12-09 20:27:44 +00:00
18 lines
414 B
TypeScript
18 lines
414 B
TypeScript
// https://nuxt.com/docs/api/configuration/nuxt-config
|
|
export default defineNuxtConfig({
|
|
compatibilityDate: "2024-04-03",
|
|
devtools: { enabled: true },
|
|
modules: ["@nuxtjs/tailwindcss", "shadcn-nuxt"],
|
|
shadcn: {
|
|
/**
|
|
* Prefix for all the imported component
|
|
*/
|
|
prefix: "",
|
|
/**
|
|
* Directory that the component lives in.
|
|
* @default "./components/ui"
|
|
*/
|
|
componentDir: "./components/ui",
|
|
},
|
|
});
|