This is a sample index.html using Gulp to copy scripts to the wwwroot folder:
<!DOCTYPE html> <html> <head> <meta charset="utf-8" /> <title>Angular 2</title> </head> <body> <app-shell></app-shell> <script src="node_modules/zone.js/dist/zone.js"></script> <script src="node_modules/reflect-metadata/Reflect.js"></script> <script src="node_modules/systemjs/dist/system.src.js"></script> <script src="startup.js"></script> </body> </html> How are the script references for AngularJS 2 RC done using CDN? -- You received this message because you are subscribed to the Google Groups "AngularJS" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/angular. For more options, visit https://groups.google.com/d/optout.
