私はAngular CLIを使用しています。 Node.js + Lamdaテンプレートを使用し、ビルドでパブリックフォルダを生成させます。あなたの.angular-cli.jsonファイルへ
移動し、代わりにそれは "DIST"
"apps": [
{
"root": "src",
"outDir": "../public", <-- RIGHT HERE (it tells the build where to compile to)
"assets": [
"assets",
"favicon.ico"
],
"index": "index.html",
"main": "main.ts",
"polyfills": "polyfills.ts",
"test": "test.ts",
"tsconfig": "tsconfig.app.json",
"testTsconfig": "tsconfig.spec.json",
"prefix": "app",
"styles": [
"styles.css"
],
"scripts": [],
"environmentSource": "environments/environment.ts",
"environments": {
"dev": "environments/environment.ts",
"prod": "environments/environment.prod.ts"
}
}
]であることの "../public" にapps.outDirを変更し、
それは間違いなくすべき適切に設定されていれば可能です。私は今それを調べている。これを投稿してから進んだことはありますか? –