This issue addresses the inconsistent handling of imports throughout the project. With Nuxt 4, many imports are handled automatically, and removing the now redundant manual imports will improve code consistency and maintainability.
Tasks
- Audit the entire codebase to identify all imports that are made redundant by Nuxt 4's auto-import feature.
- Systematically remove all unnecessary import statements.
- Verify that the application compiles and all functionalities work as expected after the refactoring.
- (Optional) Add a linting rule to prevent manual imports of auto-imported components/functions in the future.
This issue addresses the inconsistent handling of imports throughout the project. With Nuxt 4, many imports are handled automatically, and removing the now redundant manual imports will improve code consistency and maintainability.
Tasks