Include a plain HTML file and folder with Angular CLI Build? -


is there way me include static html file using ng build? place in sub folder every time build

e.g. mysite.com/static/index.html

i know can manually, prefer not every build

add static folder in project , index.html in it. then, add entry target folder under assets in .angular-cli.json:

"assets": [         "assets",         "favicon.ico",         "static"        ], 

Comments

Popular posts from this blog

angular - DownloadURL return null in below code -

python 2.7 - Given three nested dictionaries, sort the top two nested dictionaries from a value in the innermost dictionary? -