我正在尝试在我的本地IIS上部署我的Angular 2应用程序。当我在本地计算机上运行我的应用程序时,它运行良好而没有错误,但是当我在本地IIS中托管它时,它会对node_modules中的某些文件引发404错误。请注意,node_modules文件夹不在IIS上托管。我收到以下错误。
显然它似乎无法找到那些文件,因为它无法检测到node_modules文件夹,但我的问题是我们是否需要托管那么大的node_modules?如果没有,那么获得polyfills的方法是什么 -
<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="../../node_modules/systemjs/dist/system.src.js"></script>
<script src="../../systemjs.config.js"></script>
<script>
System.import('app').catch(function(err){ console.error(err); });
</script>
请建议在IIS上部署应用程序的方法。