-
What is the recommended way to get the unminified code for the entire project? |
Beta Was this translation helpful? Give feedback.
Answered by
kalwalt
Jun 9, 2022
Replies: 1 comment 4 replies
-
@csustan the project use webpack as a bundler, you can rebuild the libs by yourself with the |
Beta Was this translation helpful? Give feedback.
4 replies
Answer selected by
csustan
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
@csustan the project use webpack as a bundler, you can rebuild the libs by yourself with the
dev
option, run this commandnpm run build:dev
. Anyway this is intended only for testing not for production library builds.