Balu Balaji
Balu Balaji

Reputation: 1

Vulcanization is not working in polymer

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

Answers (1)

Jacob Miles
Jacob Miles

Reputation: 206

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

Upvotes: 0

Related Questions