Hi,
This is my folder structure:
├── client
│ ├── head.html
│ └── main.js
├── imports
│ ├── components //place it inside imports/client/?
│ ├── pages //place it inside imports/client/?
│ └── startup
│ └── client
│ ├── index.js
│ ├── routes.js
│ └── startup.js
├── mobile-config.js
├── package.json
├── public
Should I create /client folder inside /imports and place/components & /pages there, for not to load files inside these dirs on the server, or anyway they will load only where I’ll import them?
i.e. will files inside imports/components or imports/pages load on a server if I don’t place them inside /client folder?