我可以在angular dist文件夹中使用index.jsp代替index.html吗

时间:2019-05-03 13:53:20

标签: angular jsp angular6 frontend

我已经在JSP中构建了一个应用程序,并且有一些用jsp文件编写的逻辑无法实现。

  

我想对角度i:e index.jsp使用相同的文件,而不是   index.html。

我如何使用它或使用它所需的任何配置?

1 个答案:

答案 0 :(得分:2)

如果您正在使用angular cli,则将看到angular.json文件。您将看到我们可以像这样更改角度应用程序的默认模板

    "build": {
      "builder": "@angular-devkit/build-angular:browser",
      "options": {
        "progress": true,
        "extractCss": true,
        "outputPath": "dist",
        "index": "src/index.html" // change to your jsp file
    }

如果您有任何问题,请告诉我