In Angular2, I have something like templateUrl = 'templates/app.component.html'
during development. But in deployment, i need the url to be something like templateUrl = '/static/angular_templates/app.component.html'
. It bites to have to change the url at every single place. Is there an easy way to set a base url and do something like
templateUrl = BASE_TEMPLATE_PATH+ '/app.component.html'
so i only need to update BASE_TEMPLATE_PATH
when switching from development to production? Thanks!
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…