I have this ts error when using extractStyle for solving page css flicker problem in nuxt.config.ts:
Type '{ extractStyle: true; }' is not assignable to type 'Partial<Partial<Options>>'.
Object literal may only specify known properties, and 'extractStyle' does not exist in type 'Partial<Partial<Options>>'.
I have tried to ignore TS on that line by using // @ts-expect-error:next-line but in my app.ts, I have this waring: [Vue warn]: Failed to resolve component: a-extract-style
I have this ts error when using extractStyle for solving page css flicker problem in nuxt.config.ts:
Here's my nuxt.config.ts
I have tried to ignore TS on that line by using // @ts-expect-error:next-line but in my app.ts, I have this waring:
[Vue warn]: Failed to resolve component: a-extract-style
My app.ts:
My project: Nuxt 3.9.0, @ant-design-vue/nuxt 1.3.0