You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If you include <!DOCTYPE html> in your __template.svelte file, the content of a page seems to get injected into the output index.html file twice. This is likely a bug related to #120.
The text was updated successfully, but these errors were encountered:
Yup, this is due to the regex used that is supposed to just get the doctype element, but instead gets the doctype and everything else until the last closing angle brace: >
Bad regex: <!DOCTYPE[\s\S]*>
I think this just needs a lazy modifier at the end, before the right angle brace: ?
If you include
<!DOCTYPE html>
in your__template.svelte
file, the content of a page seems to get injected into the outputindex.html
file twice. This is likely a bug related to #120.The text was updated successfully, but these errors were encountered: