Learnings I have picked up by Learning In Public.
Netlify allows you to add code to your site at the CDN level by using a feature called Snippet Injection.
The <button> element can have a value like <input> and this value can also be passed to the server when the form is submitted:
<button>
<input>
Take advantage of HTTP/2 in Vite Dev Server by enabling server.https in your vite.config.js.
server.https
vite.config.js
Svelte nodes have a svelte_meta object in development mode that contains the file location of the component that rendered that node.
svelte_meta
The HTML i element is named the Idiomatic Text element on MDN Web Docs.
i
Vite uses esbuild to transpile Typescript into Javascript and esbuild does not do any type checking.
We can use GitHub Actions to push a new commit each time there is a new change detected.