VSCodeMinify icon indicating copy to clipboard operation
VSCodeMinify copied to clipboard

Added settings to change output locations

Open mhco opened this issue 5 years ago • 0 comments

Summary

Added "minify.jsSavePath", "minify.cssSavePath", and "minify.htmlSavePath" settings that enable the user to define where they want files saved. These settings take strings, and can be relative or direct.

This change needs to be thoroughly tested by others before it's fully ready to release.

Examples

Relative:

"minify.jsSavePath": "../../public/js",

Root level:

"minify.cssSavePath": "/assets/css/",

Literal:

"minify.htmlSavePath": "compiled/css/",

mhco avatar Sep 29 '20 20:09 mhco