0

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';
    });
});

1 Answers1

0

You need to make sure that your polymer.json file contains all file you want included in vulcanization.

Jacob Miles
  • 196
  • 1
  • 2
  • 13