/sveltekit-base

A SvelteKit base which contains Tailwind, SCSS support, and more.

Primary LanguageSvelte

SvelteKit Base Starter

This is a simple SvelteKit starter theme. It has SCSS compilation, and TailwindCSS already included and ready to build.

SvelteKit Docs

Tailwind Docs


Getting Started

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-name

Change Git Remote

Don'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].git

Note: It's easier to fork my repo and continue on from there.

Developing

# If you're not in the working directory
cd your-app-name

# Install dependencies
npm install

# Serve locally
```bash
npm run dev

Build for Production

npm run prod