Farata / angular2typescript

Code samples from the book Angular 2 Development with TypeScript
MIT License
440 stars 270 forks source link

error downloading https://unpkg.com/core-js@3.8.3/client/shim.min.js #37

Open leonardocregis opened 3 years ago

leonardocregis commented 3 years ago

The first sample project: hello-world-ts When putting the projet to run on http-server and hitting the URL . The page doesn't load and looking to the CONSOLE of the browser, i get the error

GET https://unpkg.com/core-js@3.8.3/client/shim.min.js net::ERR_ABORTED 404

image

tampambro commented 2 years ago

Try change this line in index.html :

<script src="//unpkg.com/core-js/client/shim.min.js"></script>

to this:

<script src="//unpkg.com/core-js@2.4.1/client/shim.min.js"></script>