Reputation: 1
I have implemented lazy loading like this.After implemented this vulcanization is not working.
page('/home', function() {
Polymer.Base.importHref('/components/home/home.html', function()
{
app.route = 'home';
});
});
Upvotes: 0
Views: 94
Reputation: 206
You need to make sure that your polymer.json file contains all file you want included in vulcanization.
Upvotes: 0