electron-userland / electron-forge-templates

Templates bundled with Electron Forge <= 5 to create Electron apps using popular JavaScript frameworks
107 stars 23 forks source link

Unexpected Token < #28

Closed Marcus122 closed 7 years ago

Marcus122 commented 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" >

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

Marcus122 commented 7 years ago

Actually it turns out making any change to index.html fixes this.