通常使用JIT编译器我可以使用简单的Nginx配置构建我的发行版并在生产中提供它:
server {
listen 8082;
server_name 127.0.0.1;
root /path/to/my/dist;
location / {
try_files $uri$args $uri$args/ /index.html;
}
}
但是现在我正在尝试配置Nginx以便在this configuration之后提供AOT编译版本。 AOT编译文件位于 / aot 目录中,其中包含文件夹 node_modules , src 以及所有 ngFactory.ts < / strong>生成的文件。
我的问题是,Nginx如何为这款应用提供服务?通常当我使用Webpack创建捆绑包时,我只需要提供 index.html,polyfills,app,vendor 和 assets ,但这里看起来我有整个项目结构