Laravel + Polymer | I can not import html from a web components

1

I'm using LaravelCollective,

{!! Html::style('http://localhost/prueba/bower_components/paper-button/paper-button.html', array('rel' => 'import')) !!}

I get the following error in the browser console:

  

(Imported resource from origin ' link ' has been blocked   from loading by Cross-Origin Resource Sharing policy: No   'Access-Control-Allow-Origin' header is present on the requested   resource. Origin ' link ' is therefore not allowed   access.),

How do I solve this error? Is there another way to import Polymer?

    
asked by gburu98 10.08.2016 в 21:05
source

1 answer

0

To import components, use relative urls

{!! Html::style('../bower_components/paper-button/paper-button.html', array('rel' => 'import')) !!}
    
answered by 05.10.2016 в 16:44