dburles / meteor-guide-starter-react

A basic starter application based on the Meteor guide
MIT License
20 stars 1 forks source link

/server/main.js has no import of /imports/startup/server #1

Closed Batistleman closed 8 years ago

Batistleman commented 8 years ago

The server entrypoint '/server/main.js' has no import of '/imports/startup/server' yet.

Shouldn't the following line be present in the file?

import '/imports/startup/client';
dburles commented 8 years ago

That's a good point considering imports/startup/server/index.js exists. I think the reason why I didn't was because it's an empty file. Edit: though routes.js is too so I have no excuse ;)

dburles commented 8 years ago

Thanks @Batistleman