Sapper template with Tailwind
degit
degit
is a scaffolding tool that lets you create a directory from a branch in a repository.
npx degit "narze/sapper-tailwindcss-template" my-app
Click Use this template
on GitHub
However you get the code, you can install dependencies and run the project in development mode with:
cd my-app
npm install # or yarn
npm run dev
Open up localhost:3000 and start clicking around.
Consult sapper.svelte.dev for help getting started.
Vercel will automatically choose Sapper as the framework preset, however to make the build pass you have to override its build command with yarn run export
instead.
See in sapper-template