We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Most of our files have long relative paths. This looks ugly and is a pain when moving files around because import paths have to be imported as well.
import { pkg } from '../../../../settings'; import uuidv4 from '../../../../global/js/utils/uuidv4';
Solution is to update our vite config file to allow alias.
import { pkg } from '@settings'; import uuidv4 from '@utils/uuidv4';
No response
n/a
Low Priority = release date is not dependent on fix or not upcoming
packages/core/.storybook/main.js
es
lib
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The problem
Most of our files have long relative paths. This looks ugly and is a pain when moving files around because import paths have to be imported as well.
The solution
Solution is to update our vite config file to allow alias.
Design link
No response
Links to other materials
No response
Owner/main maintainer(s)
n/a
Second/backup maintainer(s)
No response
Product/offering
No response
Business priority
Low Priority = release date is not dependent on fix or not upcoming
Code of Conduct
Acceptance criteria
packages/core/.storybook/main.js
es
,lib
, etc.).Extra links
The text was updated successfully, but these errors were encountered: