Closed Marcus122 closed 7 years ago
Hi,
On macOSX 10.12.1 I was running the react-typescript template and getting the error:
Uncaught SyntaxError: Unexpected token < index.html:inline_1.tsx:12
After trying a few different things removing the space on the body tag after the style attribute fixed the issue..
so <body style="overflow: hidden; background-color: rgba(0,0,0,0); margin: 0" >
<body style="overflow: hidden; background-color: rgba(0,0,0,0); margin: 0" >
to <body style="overflow: hidden; background-color: rgba(0,0,0,0); margin: 0">
<body style="overflow: hidden; background-color: rgba(0,0,0,0); margin: 0">
Thought I'd post incase anyone else comes across this issue.
Thanks
Actually it turns out making any change to index.html fixes this.
Hi,
On macOSX 10.12.1 I was running the react-typescript template and getting the error:
Uncaught SyntaxError: Unexpected token < index.html:inline_1.tsx:12
After trying a few different things removing the space on the body tag after the style attribute fixed the issue..
so
<body style="overflow: hidden; background-color: rgba(0,0,0,0); margin: 0" >
to
<body style="overflow: hidden; background-color: rgba(0,0,0,0); margin: 0">
Thought I'd post incase anyone else comes across this issue.
Thanks