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.
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
Start the app in development
mode (hot-code reloading, error reporting, etc.)
yarn tauri dev
Build the app for production
yarn tauri build
yarn tauri help
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: [],
};