[Vuejs]-Vite Internal server error: Unable to parse HTML; parse5 error code missing-whitespace-between-attributes

1👍

The error message points out that your code is missing a whitespace between attributes. I can see that your second <link> tag inside the <head> is really missing a whitespace between the rel and href attributes. Try adding the whitespace: <link rel="stylesheet" href=" https://rsms.me/inter/inter.css">

Leave a comment