Hi
Thank you for good news about tailwind theme, i did all step described in documentation (https://keenthemes.com/metronic/tailwind/docs/getting-started/integration/backend/laravel/), but i browser console shown next error
Uncaught SyntaxError: The requested module ' doesn't provide an export named: 'KTDropdownConfigInterface'
Did the problem solved? If so, can you please tell me how you solve this problem?
many thanks
If you are using typescript then each export must have the type keyword. For example: export type {someObject as object}
For me problem was only in files with export interfaces, I rewrite it from:
export intetface one {}
export interface two {}
to:
export type {one, two}
interface one {}
interface two {}