Reputation: 3417
I've installed meteor-useraccounts/core
. In the documentation it says to use lib/config/at_config.js
. Where does it go using the new recommend meteor file structure?
Upvotes: 1
Views: 121
Reputation: 8522
You can put it in to /imports/startup/
and import it in /imports/startup/server/index.js
.
For details of file structure in Meteor read Meteor Application Structure. Particularly this portion.
Upvotes: 1