Uncaught syntaxerror unexpected token main.js selector: 'page-home',template:

 HomePage = __decorate([
        Object(__WEBPACK_IMPORTED_MODULE_0__angular_core__["m" /* Component */])({
            selector: 'page-home',template:/*ion-inline-start:"F:\ioni3\smartcooking\src\pages\home\home.html"*/`<ion-content class="background">\n  <div align="center" >\n  <img   style="max-width: 50% ; max-height: 40%;  margin-top: 40px; " src="assets/imgs/smartcooking.png">\n</div>\n<div style="margin-top: 30px;">\n    <ion-grid align="center">\n        <ion-row>\n          <ion-col>\n            <div style="text-decoration-color: #e7e7e9">    \n           <img src="assets/imgs/recipes.png" style="width : 60% ; height : 60%" (click)="listRecipes()" ></div>\n           <p style="color:#939598;margin-top: 1px">RECIPES</p>\n          </ion-col>\n          <ion-col>\n            <div><img src="assets/imgs/scan.png" style="width : 60% ; height : 60%" (click)="scan()" ></div>\n            <p style="color:#939598;margin-top: 1px">SCAN</p>\n          </ion-col>\n        </ion-row>\n        <ion-row>\n            <ion-col>\n              <div><img src="assets/imgs/categories.png" style="width : 60% ; height : 60%" (click)="categories()" ></div>\n              <p style="color:#939598;margin-top: 1px">CATEGORIES</p>\n            </ion-col>\n            <ion-col>\n             <div><img src="assets/imgs/videos.png" style="width : 60% ; height : 60%" (click)="videos()" ></div>\n            <p style="color:#939598;margin-top: 1px">VIDEOS</p>\n            </ion-col>\n          </ion-row>\n          <ion-row>\n              <ion-col>\n                <div><img src="assets/imgs/favourite.png" style="width : 60% ; height : 60%" (click)="favourite()" ></div>\n               <p style="color:#939598;margin-top: 1px">MY FAVOURITE</p>\n              </ion-col>\n              <ion-col>\n                <div><img src="assets/imgs/homedelevery.png" style="width : 60% ; height : 60%" (click)="homeDelivery()" ></div>\n                <p style="color:#939598;margin-top: 1px">HOME DELIVERY</p>\n              </ion-col>\n            </ion-row>\n      </ion-grid>\n    \n</div>\n</ion-content>\n`/*ion-inline-end:"F:\ioni3\smartcooking\src\pages\home\home.html"*/
        }),Preformatted text

I had similar issue using 3.9.2 when deployed to Android 4.4.4. The possible reason is the template string embraced with ` (ASCII 96) not common single quotation marks (ASCII 39).

See detail answer here: