in one of my client files :
import { FlowRouter } from 'meteor/kadira:flow-router';
import { BlazeLayout } from 'meteor/kadira:blaze-layout';
console.log("some log");
FlowRouter.route('/entry',{
name : 'entry',
action : function(params) {
console.log("on entry");
},
});
what i see as output FlowRouter throws error that there is no route /entry and after few ms is runs above file which makes it completly unusable. Its first time i met this problem, sounds like some problem with builder?

in one of my client files :
what i see as output FlowRouter throws error that there is no route
/entryand after few ms is runs above file which makes it completly unusable. Its first time i met this problem, sounds like some problem with builder?