简体   繁体   中英

Is there a way to minify all my js/css files while rendering to the browser but not while editing it in the IDE?

My js file has a lot of comments and spaces which increases its size and slows down the website. So I am looking for a way to minify all that when I start the server but I should be able to edit it with my original file. Basically the browser sees the minified version when we 'view page source' but I should be able to see the commented version in my IDE. Is there any npm package or any way we can do that?

This is usually done with a build tool such as parcel or webpack (there are many others).

Parcel is maybe the simplest to setup, because the most important features - including minifying - are built in, or are configured automatically, however it may depend on how you have organized your project. In the best case you just need to install it

npm install --save-dev parcel

and then you can create a production build with

parcel build index.html

(if index.html is your main file).

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM