Skip to content

so1ar-ec1ipse/svelte-starter-kit-template

 
 

Repository files navigation

SvelteKit starter template with TS & tailwindcss

Feel free to use this template for your next project.

You can either click the Use this template button on the top right or if you like netlify you can deploy it straight away with the button below 👇🏼

Deploy to Netlify

Progressive Web App (PWA)

This template is setup as a PWA.

You can change your PWA settings inside the manifest.json file inside the static directory. This documentation around the manifest.json is extremely useful to help you understand the various settings.

"short_name": "SvelteKit starter",
"name": "SvelteKit starter",
"start_url": "/",
"background_color": "#6366f1",
"display": "fullscreen",
"scope": "/",
"theme_color": "#6366f1",
"description": "SvelteKit starter",

If you don't wish for your app to be a PWA, you can delete all the images for the various devices (e.g: android, apple etc) inside the static/images directory. Followed by the manifest.json inside the static directory. The service-worker.ts inside the src directory and finally delete the following three lines inside the app.html which is also in the src directory.

<meta name="theme-color" content="#6366f1" />
<link rel="manifest" crossorigin="use-credentials" href="manifest.json" />
<link rel="apple-touch-icon" href="%sveltekit.assets%/images/apple/192.png" />

Buy Me A Coffee

If I made your life easier or made you laugh, please feel free to buy me a cofee or pizza or whatever!

Buy Me A Coffee


create-svelte

Everything you need to build a Svelte project, powered by create-svelte.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project in the current directory
npm init svelte

# create a new project in my-app
npm init svelte my-app

Developing

Once you've created a project and installed dependencies with yarn (or npm install or pnpm install), start a development server:

yarn dev

Building

To create a production version of your app:

yarn build

You can preview the production build with yarn preview.

To deploy your app, you may need to install an adapter for your target environment.

About

A SvelteKit template with TS and tailwindcss

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 54.7%
  • JavaScript 21.4%
  • HTML 13.0%
  • Svelte 9.8%
  • CSS 1.1%