This is a simple SvelteKit starter theme. It has SCSS compilation, and TailwindCSS already included and ready to build.
First, clone the repo (Don't forget to change the name!)
# Clone Repo but add your own folder name
git clone git@github.com:nrthbound/sveltekit-base.git your-app-name
cd your-app-nameDon't forget to change the remote to your own repo (if you didn't fork my version).
# Remove Origin
git remote rm origin
# Set your own
git remote add origin https://github.com/[user]/[repo].gitNote: It's easier to fork my repo and continue on from there.
# If you're not in the working directory
cd your-app-name
# Install dependencies
npm install
# Serve locally
```bash
npm run devnpm run prod