Description
convert from using relative imports to alias's in the frontend
For every folder directly inside of src, there should be alias (i.e. @components, @hooks, etc). Add @ at the bottom of the list routing towards src.
Once these are made, we need to go through every file and correct the imports
Example
Bad
Bad
Good
import apiClient from "@lib/api";
Description
convert from using relative imports to alias's in the frontend
For every folder directly inside of src, there should be alias (i.e.
@components,@hooks, etc). Add@at the bottom of the list routing towards src.Once these are made, we need to go through every file and correct the imports
Example
Bad
Bad
Good