svelte-tauri-vite-tw-boilerplate Svelte Themes

Svelte Tauri Vite Tw Boilerplate

Enabling Quick Development of Tauri-Svelte Apps

Svelte + Tauri + Vite + TailwindCSS + Typescript

This boilerplate should help get you started developing with Tauri, Svelte and TypeScript in Vite with TailwindCSS! It also comes with DaisyUI 🌼, which you can choose not to use.

Boilerplate preview

Install

Clone the repo, or download as a zip file:

git clone https://github.com/yjung199/svelte-tauri-vite-tw-boilerplate.git your-project-name
cd your-project-name
yarn

Development

Start the app in development mode (hot-code reloading, error reporting, etc.)

yarn tauri dev

Build

Build the app for production

yarn tauri build

Help with Tauri

yarn tauri help

Disabling DaisyUI

If you wish to disable DaisyUI, to use other TailwindCSS components, you can do so by removing the plugin from tailwind.config.js:

// tailwind.config.js
export default {
...
  // remove require("daisyui") if you don't want to use daisyUI
  // plugins: [require("daisyui")],
  plugins: [],
};

Top categories

Loading Svelte Themes