Open pandada8 opened 8 years ago
got error main.js:4 Uncaught ReferenceError: Template is not defined when meteor update It seems the meteor 1.3 using a new modules based pseudo-globals. How to simply using with webpack without shim-loader or etc ?
main.js:4 Uncaught ReferenceError: Template is not defined
meteor update
The not defined issue could be solved by putting the build.js on the foot of the html. But seems the Template.body.onRendered was never called
not defined
build.js
Template.body.onRendered
just using Meteor.startup() now
Meteor.startup()
+1
got error
main.js:4 Uncaught ReferenceError: Template is not defined
whenmeteor update
It seems the meteor 1.3 using a new modules based pseudo-globals. How to simply using with webpack without shim-loader or etc ?