Right now when running npm run build all CSS and JavaScript dependencies inside node_modules are bundled into the output file. This significantly increases bundle size. Instead when creating new project there should be a possibility to specify that I want to have all my dependencies hosted from the CDN server.
Like this (I know that this example for React, but it does not matter)
What problem does this feature solve?
Right now when running
npm run build
all CSS and JavaScript dependencies insidenode_modules
are bundled into the output file. This significantly increases bundle size. Instead when creating new project there should be a possibility to specify that I want to have all my dependencies hosted from the CDN server.Like this (I know that this example for React, but it does not matter)
What does the proposed API look like?
When creating project add a question: