UNPKG

angular-webpack-quickstart

Version:

Angular QuickStart with Webpack 2 - source from the documentation.

29 lines (25 loc) 765 B
<!DOCTYPE html> <html> <head> <title>Angular QuickStart</title> <base href="/"> <meta charset="UTF-8"> <meta name="viewport" content="width=device-width, initial-scale=1"> <!-- Polyfill(s) for older browsers --> <script src="node_modules/core-js/client/shim.min.js"></script> <script src="https://cdnjs.cloudflare.com/ajax/libs/require.js/2.3.3/require.js"></script> <script> require.config({ baseUrl: ".", paths: { // Don't add extension ".js". "Quickstart": "main" } }); require(["Quickstart"]); </script> </head> <body> <my-app>Loading AppComponent content here ...</my-app> </body> </html>