You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Mar 12, 2023. It is now read-only.
I installed the extension JS & CSS Minifier in Visual Studio Code. I am trying to minify and compress my js, so that all variable names get shortened/uglified in the compiled file. For example, if i have the following code:
var firstValueName = 10
I would like to have it converted in the minified file to something like:
var a=10
How do I do that?
I tried adding the following configuration to VS Code but it does not seem to work:
I installed the extension JS & CSS Minifier in Visual Studio Code. I am trying to minify and compress my js, so that all variable names get shortened/uglified in the compiled file. For example, if i have the following code:
var firstValueName = 10
I would like to have it converted in the minified file to something like:
var a=10
How do I do that?
I tried adding the following configuration to VS Code but it does not seem to work:
The text was updated successfully, but these errors were encountered: