webpack icon indicating copy to clipboard operation
webpack copied to clipboard

local only config

Open pixelpaulaus opened this issue 7 years ago • 1 comments

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.

pixelpaulaus avatar Jun 13 '18 10:06 pixelpaulaus

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

Doogiemuc avatar Aug 13 '18 11:08 Doogiemuc