webpack
webpack copied to clipboard
local only config
is there a config file i can put in some configurations that will be ignored by git and will overwrite any of the other shared config files. As i have a few configs i want different on my local machine to what my other devs use for development.
Fist of all: You shouldn't do this :-) All Devs in a team should use the same config as far as possible (maybe exept for some local ip adress settings, but even that is normally just "localhost")
But If you really need this, then you can introducee your own config/local.env.js file and then tell the dev-server.js to use these settings. See https://github.com/vuejs-templates/webpack/issues/1410