* chore: add dev:nuxt script * chore(module): add `.npmrc` to playground * chore: bump 'nuxtjs/tailwindcss' and add it to modules * chore: add schema to components.json * chore: bump playground deps * fix: add missing tailwind.css by the cli * chore: bump tailwind config * chore(playground): bump Button component * chore: add comments * refactor: simplify components registration * chore(module): bump deps * chore(module): remove `oxc-parser` * chore: dedupe * feat(module): auto generate `lib/utils` * feat(module): refresh playground style and dark mode * chore: revert components registration and link the comment * chore: readd oxc-parser * chore: bump vitest
8 lines
156 B
TypeScript
8 lines
156 B
TypeScript
export default defineNuxtConfig({
|
|
modules: ['@nuxtjs/tailwindcss', '../src/module'],
|
|
shadcn: {
|
|
prefix: 'Ui',
|
|
},
|
|
devtools: { enabled: true },
|
|
})
|