1
webpackを使用して、私のangular2アプリケーションをProductionに移動したいと思っています。角2 webpack Systemjs.config.jsスクリプトとCSSの問題
<!DOCTYPE html>
<html>
<head>
<title>iPage Quick Order</title>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" type="text/css" href="mystyle.css">
<link rel="stylesheet" type="text/css" href="Stylesheet.css">
<script src="node_modules/core-js/client/shim.min.js"></script>
<script src="node_modules/reflect-metadata/Reflect.js"></script>
<script src="node_modules/zone.js/dist/zone.js"></script>
<script src="node_modules/systemjs/dist/system.src.js"></script>
<script src="src/script/systemjs.config.js"></script>
<script src="node_modules/ng2-bs4-modal/bundles/ng2-bs4-modal.js"></script>
<script src="node_modules/jquery/dist/jquery.min.js"></script>
<script src="node_modules/bootstrap/dist/js/bootstrap.min.js"></script>
<script>
System.import('src/source/app/bootstrap/main').catch(function(err){ console.error(err); });
</script>
</head>
<body>
<my-app>Loading...</my-app>
</body>
</html>
私の質問は、PRODモードでは、私はエラーを取得しておりますので、ウェブパック にCSSやJSファイルを追加する方法を、そのCSSやJSファイルが見つかりませんということです。