简体   繁体   中英

Assets not copied to the dist folder in angular

When running ng build --prod , the "assets" folder is not copied.

"root": "src",
  "outDir": "dist",
  "assets": [
    "assets",
    "favicon.ico"
  ],

my environment

Angular CLI: 1.7.4
Node: 8.11.2
OS: win32 x64
Angular: 5.2.11

Thanks

use like below
"root": "./src",
      "outDir": "dist",
      "assets": [
        "assets",
        "favicon.ico"
      ],

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM