developerasun / myCodeBox-web

Open source code box for web developers.
Apache License 2.0
5 stars 0 forks source link

[BUG] VS code/extension: Material icons showing wrong icon #278

Closed developerasun closed 1 year ago

developerasun commented 1 year ago

Describe the bug

VS code material icon extension showing react icon for .js file

To Reproduce Steps to reproduce the behavior:

  1. Go to VS code and install Material icon extension
  2. Click on .js file
  3. . See error

Expected behavior

JS icon showing properly in IDE

Screenshots

react-icon-for-js

Additional context Add any other context about the problem here.

Labeling Add a proper label for the issue

developerasun commented 1 year ago

solution: add below code lines in settings.json

    "material-icon-theme.files.associations": {
        "*.js": "javascript"
    },

reference