Search code examples
javascriptvisual-studio-codegatsbysrc

In Visual Studio Code, why are src/pages linked together or appear together?


I'm new to Visual studio code (VSC) and I'm working through a Gatsby tutorial. Each time I've created a new directory, VSC links or appears to link src/pages together. I want pages to be a sub folder of src. Src should stand alone from other examples I've seen online. Is this common format? See below Visual Studio Code Interface


Solution

  • It's a pain in visual studio but you can change it by going to your user preferrences file (ctrl + shift + P) searching for preferences Open Settings (JSON) file and adding the following line "explorer.compactFolders": false, on settings.json file. Hit save and that's it!

    When "explorer.compactFolders": true

    When "explorer.compactFolders": false

    enter image description here