简体   繁体   中英

how to know which file compile when I run npm run dev

when running npm running its compile CSS and js right? where can I find that file and can I edit it, I want to change the background of my vue2-timepicker, its currently in #dde1e3 , I want to change it to #fff / white, and also when I'm using vue2-timepicker, it automatically became read-only, anyway thank you so much, everyone, hope someone can help me thank you so much in advance

when running npm running its compile css and js right?

npm run dev means Run the command listed under dev in the scripts section of package.json .

That could do pretty much anything (and compiling CSS and JS is one thing it could do).

So to determine what it is doing, look at package.json to see the command and trace through.

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