Angular cli hook

I am looking for way to modify output of build function from

ng build --prod

would like to add some bootstrap css files to head section of index.html, change name index.html => index.php etc.

how to do it ?


You can customise the implementation from the source code. This section explains how you can proceed.

In particular, you can change the following lines from addon/ng2/models/webpack-build-common.ts.

new HtmlWebpackPlugin({
    template: path.resolve(projectRoot, `./${sourceDir}/index.php`),
    chunksSortMode: 'dependency'
  })

For the CSS resources, they can be packaged directly if you use Webpack Angular CLI.

EDIT

The key index in the apps nodes can be modified in the angular-cli.json file. The line should be changed to

"index": "index.php",
链接地址: http://www.djcxy.com/p/35202.html

上一篇: AsyncRestTemplate Netty客户端的Spring启动失败

下一篇: 角cli钩