Coded in Svelte
Install the dependencies...
npm install
...then start Vite in development mode:
npm run dev
Navigate to URL listed in console output to see running app instance.
To create an optimised version of the app:
npm run build
If you have assets that are:
Then you can place the asset in a special public directory under your project root. Assets in this directory will be served at root path / during dev, and copied to the root of the dist directory as-is.
The directory defaults to /public in root dir of the repo, but can be
configured via the publicDir
option.
Note: you should always reference public assets using root absolute path - for example, public/icon.png should be referenced in source code as /icon.png.