android 将ionic构建到/dist文件夹而不是/www

bwitn5fc  于 2022-11-03  发布在  Android
关注(0)|答案(2)|浏览(182)

当我运行ionic build时,它总是建立一个新的/dist文件夹,其中包含通常在/www文件夹中找到的所有内容。我试图更新我的/www文件夹,但它从来没有这样做,只更新了/dist文件夹。为什么会发生这种情况?为什么我的/www文件夹拒绝使用/src代码中的新更改进行更新?
我用--prod标志构建了我的应用程序几次,这是为什么吗?

vyswwuz2

vyswwuz21#

若要变更所有组建..

  • 将以下内容更改为angular-cli.json(ng1)或angular.json(ng2+):
"architect": {
      "build": {
        "builder": "@angular-devkit/build-angular:browser",
        "options": {
          "outputPath": "dist/dev",
        }
      }
    }

要具有多个位置,请执行以下操作:

  • 构建方式:

ng build --output-path=dist/dev

  • 或具有多种配置:

ng build --output-path=wwwtest --configuration test

qc6wkl3g

qc6wkl3g2#


**run ng build first**

    www folder will be created not dist folder
on your netlify deployment setting set the following configuration 

Base directory  /**leave it blank its optional**/ 

Build command  ng build

Publish directory  www/**replace with**www/**rather than**dist/**

相关问题