Prettier HTML mess up issue

PHOTO EMBED

Mon Mar 27 2023 04:31:09 GMT+0000 (Coordinated Universal Time)

Saved by @benjaminb #css

The solution I found is to add this to your settings.json file to tell VS Code to use the default HTML formatter instead of Prettier:

{
  "[html]": {
    "editor.defaultFormatter": "vscode.html-language-features"
  },
}
content_copyCOPY

https://flaviocopes.com/vscode-prettier-fix-html-mess/