jvler
jvler
NNuxt
Created by Nebel on 3/25/2025 in #❓・help
Migrate NuxtUI 2 to 3
I found out that I was missing TypeScript in the dependencies. yarn add typescript did the trick 🙂
15 replies
NNuxt
Created by Nebel on 3/25/2025 in #❓・help
Migrate NuxtUI 2 to 3
"dependencies": { "nuxt/ui": "^3.0.2", "tailwindcss/vite": "^4.1.0", "vite": "^6.2.4", "vue": "^3.5.13", ... }
15 replies
NNuxt
Created by Nebel on 3/25/2025 in #❓・help
Migrate NuxtUI 2 to 3
nuxt.config.ts import { resolve } from "node:path" import tailwindcss from "@tailwindcss/vite"; export default defineNuxtConfig({ app: { ... }, routeRules: { ... alias: { ... }, devtools: { enabled: true }, css: ['~/assets/css/main.css'], ssr: false, modules: [ 'nuxt-bugsnag', 'nuxt-scheduler', "dayjs-nuxt", '@pinia/nuxt', '@nuxt/ui', 'nuxt-gtag', '@nuxtjs/robots', "@nuxtjs/google-fonts" ], googleFonts: { ... }, robots: { ... }, vite: { plugins: [ tailwindcss(), ], }, nitro: { ... }, dayjs: { ... }, bugsnag: { ... }, runtimeConfig: { ... }, compatibilityDate: '2024-10-08' })
15 replies
NNuxt
Created by Nebel on 3/25/2025 in #❓・help
Migrate NuxtUI 2 to 3
Did you manage to solve it? I'm going through the same problem.
15 replies