How to compile less into wxss using vscode:
The first step is to download the Easy LESS plug-in from the vscode store.
The second step is to configure the settings.json file (File - Preferences - Settings - Search Settings settings.json)
Add the following code:
"less.compile": { "outExt": ".wxss" }
If you write code in the less file at this time, a .WXSS file will be automatically generated after saving it
Recommended learning: vscode tutorial
The above is the detailed content of How to compile less into wxss with vscode. For more information, please follow other related articles on the PHP Chinese website!