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
Asked
Active
Viewed 1,402 times
1
-
can you explain step by step ? add the commands you're typing and what you're getting vs expecting. – quazardous Apr 07 '20 at 07:29
-
Usually there is a `webpack.mix.js` file in your Laravel project root that defines what to do. But I doubt you can change/set colors there – brombeer Apr 07 '20 at 07:42
-
Have you tried setting an [input-class](https://github.com/phoenixwong/vue2-timepicker/blob/master/README.md#the-input-class) attribute to your own defined class? – brombeer Apr 07 '20 at 07:47
-
Not yet sir, Ill try now, and thank you for all your help – NOVELL Apr 08 '20 at 02:20
1 Answers
1
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.

Quentin
- 914,110
- 126
- 1,211
- 1,335
-
Thank you so much for the help, I'll let you know whenever it works, thank you so much again – NOVELL Apr 08 '20 at 02:16
-
It work, I traced it, thank you so much for your help, now my problem is veevalidate, its not working, ahahaha, anyway thank you so much again for your help – NOVELL Apr 08 '20 at 03:03