-
-
Notifications
You must be signed in to change notification settings - Fork 21
Description
Hi, I'm doing the course for the first time and just got to lesson 5 (so excuse me if my issue is resolved in one of the later lessons).
I followed everything as described in lessons 1 - 4, and the content from the initial starter files ZIP is still at the top level of my directory structure, i.e. for example the directory images is at the same level as the directories src and dist.
Therefore, the line
config.addPassthroughCopy('./src/images/');
does not find the images and thus doesn't copy anything.
If instead I replace it with the line
config.addPassthroughCopy('./images/');
it actually copies the image and I can complete the lesson as intended.
So therefore, I propose to either (a) make the change to the line above, or (b) if the intention is to have all the initial static starter files inside the src directory, then include a command to move them there somewhere in lessons 1 - 4 beforehand.
Thanks.