qlash
qlash
When building with newly created nuxt app i've got an error: node_modules/nuxt-icon/dist/runtime/Icon.vue:11:19 - error TS2352: Conversion of type 'AppConfig' to type '{ nuxtIcon: { size?: string | undefined; class?: string...
Are you planning to add login on server side with this app?
When I create simple plugin to share value across my app plugins/test.ts `export default defineNuxtPlugin(() => { return { provide: { test: 'string' }, }; });` and I use it...