bash - How to deal with a large number of pages in Angular 2? -
i'm new angular 2+.
i want create application 121 html pages (actually ionic3 stories application, 1 story on 1 html template).
in case, must use cli ng generate
121 components or have way faster?
please me. help.
its hard without seeing templates. if sure need run generate component command many times, can ex: n=1; while [[ $n -lt 3 ]]; ng g c component${n}; n=$((n+1)); done
wiki
Comments
Post a Comment