refactor(deps): migrate to nuxt v4

This commit is contained in:
2026-02-10 00:31:04 +08:00
parent f1b9cea060
commit 880b85f75d
88 changed files with 80 additions and 60 deletions

32
app/app.config.ts Normal file
View File

@@ -0,0 +1,32 @@
export default defineAppConfig({
ui: {
primary: 'indigo',
gray: 'neutral',
strategy: 'merge',
button: {
icon: {
loading: 'animate-none',
},
default: {
loadingIcon: 'i-svg-spinners-180-ring-with-bg',
},
},
notifications: {
position: 'top-0 bottom-auto',
},
horizontalNavigation: {
container: 'gap-2',
base: 'px-3 py-4',
after: 'after:hidden',
active:
'before:bg-neutral-600 hover:before:bg-neutral-600 dark:before:bg-neutral-800 dark:hover:before:bg-neutral-800 text-neutral-50 dark:text-neutral-300',
icon: {
active: 'text-neutral-50 dark:text-neutral-300',
},
},
formGroup: {
hint: 'text-xs',
help: 'text-xs',
},
},
})