Angular2 は初めてで、成功せずに ng2-bootstrap ディレクティブを実装する手順を実行しようとしています。この奇妙な、時間の無駄なエラー「Uncaught ReferenceError: require is not defined」が表示されます
私のindex.htmlファイルは次のようになります
<link rel="stylesheet" href="/app/styles/roboto.min.css">
<link rel="stylesheet" href="app/styles/app.custom.css">
<link rel="stylesheet" href="app/styles/bootstrap-theme.min.css" >
<link rel="stylesheet" href="app/styles/bootstrap.min.css" >
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="systemjs.config.js"></script>
<script src="node_modules/ng2-pagination/dist/ng2-pagination-bundle.js"></script>
<script src="node_modules/ng2-bootstrap/ng2-bootstrap.js"></script>
<script>
System.config({
packages: {
app: {
format: 'register',
defaultExtension: 'js'
}
},
map: {
moment: 'node_modules/moment/moment.js'
}
});
System.import('app/main').catch(function(err){ console.error(err); });
</script>
</head>
ご協力いただきありがとうございます