Reputation: 2627
I saw the next ES6 code:
import '../node_modules/spectre.css/dist/spectre.min.css';
import './styles.css';
what's the meaning of using . .. ... .... just after
import '
Upvotes: 0
Views: 156
Reputation: 116
The dots indicate which directory you're starting from.
./index.js
looks for index.js in the current directory.
../index.js
looks for index.js inside the parent directory.
Upvotes: 3