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
Post a Comment