Load external files via src attribute
mainYou can load the content of your template, script, or style tags from external files using the src attribute.
Important: You must use a relative path starting with a dot (.) for the src attribute to be recognized by svelte-preprocess.
<template src="./template.html"></template>
<script src="./script.js"></script>
<style src="./style.css"></style>