[Vuejs]-"SecurityError: The operation is insecure." when trying to include JS file

0👍

The problem is not related to your vendor.js. It is auto-builded script and it contains all the code from the Vue components.

As @KevinB said, inside the generated file vendor.js your code probably deals with http://website.com link. So you gotta check out your Vue components on such links and change them to SSL-certificated.

Wish it helps.

Leave a comment