Dapo-Thomas
Dapo-Thomas
NNuxt
Created by Dapo-Thomas on 12/27/2024 in #❓・help
Module pinia is disabled due to incompatibility issues: - [nuxt] Nuxt version ^2.0.0 || >=3.13.0 is
thats what i got
25 replies
NNuxt
Created by Dapo-Thomas on 12/27/2024 in #❓・help
Module pinia is disabled due to incompatibility issues: - [nuxt] Nuxt version ^2.0.0 || >=3.13.0 is
Who required nuxt: job-board > [email protected]
25 replies
NNuxt
Created by Dapo-Thomas on 12/27/2024 in #❓・help
Module pinia is disabled due to incompatibility issues: - [nuxt] Nuxt version ^2.0.0 || >=3.13.0 is
okayy
25 replies
NNuxt
Created by Dapo-Thomas on 12/27/2024 in #❓・help
Module pinia is disabled due to incompatibility issues: - [nuxt] Nuxt version ^2.0.0 || >=3.13.0 is
npm
25 replies
NNuxt
Created by Dapo-Thomas on 12/27/2024 in #❓・help
Module pinia is disabled due to incompatibility issues: - [nuxt] Nuxt version ^2.0.0 || >=3.13.0 is
// https://nuxt.com/docs/api/configuration/nuxt-config export default defineNuxtConfig({ app: { head: { title: 'Job Hub', htmlAttrs: { lang: 'en', }, meta: [ { charset: 'utf-8' }, { name: 'viewport', content: 'width=device-width, initial-scale=1' }, { hid: 'description', name: 'description', content: '' }, { name: 'format-detection', content: 'telephone=no' }, ], link: [ { rel: 'icon', type: 'image/x-icon', href: '/favicon.ico' }, { rel: 'preconnect', href: 'https://fonts.googleapis.com' }, { rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' }, { rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap', }, ], script: [ ], }, }, compatibilityDate: '2024-11-01', css: [ '~/assets/css/tailwind.css'], postcss: { plugins: { tailwindcss: {}, autoprefixer: {}, }, }, devtools: { enabled: true }, modules: ['@nuxtjs/color-mode', '@pinia/nuxt'], colorMode: { classSuffix: '', }, }) my nuxt.config.ts file
25 replies
NNuxt
Created by Dapo-Thomas on 12/27/2024 in #❓・help
Module pinia is disabled due to incompatibility issues: - [nuxt] Nuxt version ^2.0.0 || >=3.13.0 is
ive done everything { "name": "nuxt-app", "private": true, "type": "module", "scripts": { "build": "nuxt build", "dev": "nuxt dev", "generate": "nuxt generate", "preview": "nuxt preview", "postinstall": "nuxt prepare" }, "dependencies": { "@fontsource/poppins": "^5.1.0", "@headlessui/vue": "^1.7.23", "@heroicons/vue": "^2.2.0", "@nuxtjs/color-mode": "^3.5.2", "@nuxtjs/fontawesome": "^1.1.2", "@vesp/nuxt-fontawesome": "^1.1.0", "nuxt": "^3.14.1592", "pinia": "^2.3.0", "vue": "latest", "vue-router": "latest" }, "devDependencies": { "@nuxtjs/tailwindcss": "^6.12.2", "@pinia/nuxt": "^0.9.0", "autoprefixer": "^10.4.20", "postcss": "^8.4.49", "tailwindcss": "^3.4.17" }, "overrides": { "vue": "latest" } } my package.json
25 replies