Hey, I tried to include script src="main.js; in my template's head which expands to <script src="main.js">. This is however wrong as script tags always need to be closed. The solution is to use script src="main.js" {} in the template instead. Maybe this can be improved by special casing the generation of script tags?
Hey, I tried to include
script src="main.js;in my template'sheadwhich expands to<script src="main.js">. This is however wrong as script tags always need to be closed. The solution is to usescript src="main.js" {}in the template instead. Maybe this can be improved by special casing the generation ofscripttags?