excubo-ag / WebCompiler

Apache License 2.0
148 stars 29 forks source link

Cannot find any documentation for relative output path in configuration file (override) #63

Closed martinlcp closed 2 years ago

martinlcp commented 2 years ago

Your documentation states that the output path (folder) is overridden by a webcompilerconfiguration.json, this seems to be the case but I cannot find any documentation for what to put in the config file to allow a different output directory.

stefanloerwald commented 2 years ago

I think you're looking for the definition here.

If I read that right, you should be able to set

{
   "Output": 
   {
      "Directory": "your/path/prefix/here"
   }
}

in the config json file. Please let me know if that works for you and please consider a PR for better documentation, if you think it could be helpful to others.

Thanks Stefan