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

What is happening when Matlab is starting a "parallel pool"? -

angular - DownloadURL return null in below code -

php - Cannot override Laravel Spark authentication with own implementation -