Ionic 2/3 移动浏览器的 AOT(提前编译)
AOT (Ahead-of-Time Compilation) For Ionic 2/3 Mobile Browsers
我在 https://angular.io/guide/aot-compiler 寻找 AOT 实现,周围有很好的文档。
我们如何使用 IONIC CLI 为移动浏览器应用程序实现 AOT?
正如@0mpurdy 所说,它默认编译为 aot,但您始终可以通过在构建应用程序时使用 --aot
标志来确保它正在编译 AOT。此标志自 app-scripts
0.0.47 版本开始可用。
万一有人需要为移动浏览器做 AOT build ionic,下面的命令工作正常 -
npm run build --prod --aot
当 ionic cordova 运行 android --aot 这个命令不起作用时,请遵循这些东西。
If you have more then one page remove all page module.ts file then remove IonicPage() inside .ts file.
希望对您有所帮助。
我在 https://angular.io/guide/aot-compiler 寻找 AOT 实现,周围有很好的文档。
我们如何使用 IONIC CLI 为移动浏览器应用程序实现 AOT?
正如@0mpurdy 所说,它默认编译为 aot,但您始终可以通过在构建应用程序时使用 --aot
标志来确保它正在编译 AOT。此标志自 app-scripts
0.0.47 版本开始可用。
万一有人需要为移动浏览器做 AOT build ionic,下面的命令工作正常 -
npm run build --prod --aot
当 ionic cordova 运行 android --aot 这个命令不起作用时,请遵循这些东西。
If you have more then one page remove all page module.ts file then remove IonicPage() inside .ts file.
希望对您有所帮助。