I know ../ means go up a path, but what does ./ mean exactly?
../
./
I was recently going through a tutorial and it seems to be referring to just
You can use the following list as quick reference:
/ = Root directory . = This location .. = Up a directory ./ = Current directory ../ = Parent of current directory ../../ = Two directories backwards
Useful article: https://css-tricks.com/quick-reminder-about-file-paths/