Changes between Initial Version and Version 1 of Ticket #48154, comment 27
- Timestamp:
- 01/24/2020 03:06:43 AM (3 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #48154, comment 27
initial v1 5 5 6 6 Why would you want to split one file into 80 one-line files and then `require` them (or half of them) every time the app runs? There is some mild slowdown/increased use of resources on the server regardless of whether these files are used or not. What are the benefits for the built app? 7 8 Then, making architectural changes/adding new files "locks" them in place. Generally it becomes quite hard to move or delete them later as these changes are in the built/production version. 7 9 8 10 > If we were to change how the /build is handled, it would have to change for JS files as well.