1. Create your project

    Start by creating a new SvelteKit project if you don't have one set up already. The most common approach is outlined in the Getting Started with SvelteKit introduction.

    Terminal
    npm init svelte@next my-appcd my-app
  2. Install Tailwind CSS

    Install tailwindcss and its peer dependencies via npm, and then run the following commands to generate both tailwind.config.cjs and postcss.config.cjs.

    Terminal
    npm install -D tailwindcss postcss autoprefixernpx tailwindcss init tailwind.config.cjs -pmv postcss.config.js postcss.config.cjs
  3. Configure your template paths

    Add the paths to all of your template files in your tailwind.config.cjs file.

    tailwind.config.cjs
    module.exports = {
      content: ['./src/**/*.{html,js,svelte,ts}'],
      theme: {
        extend: {}
      },
      plugins: []
    };
    
  4. Add the Tailwind directives to your CSS

    Create a ./src/app.css file and add the @tailwind directives for each of Tailwind’s layers.

    app.css
    @tailwind base;
    @tailwind components;
    @tailwind utilities;
  5. Import the CSS file

    Create a ./src/routes/__layout.svelte file and import the newly-created app.css file.

    __layout.svelte
    <script>
      import "../app.css";
    </script>
    
    <slot />
  6. Start your build process

    Run your build process with npm run dev.

    Terminal
    npm run dev
  7. Start using Tailwind in your project

    Start using Tailwind’s utility classes to style your content.

    index.svelte
    <h1 class="text-3xl font-bold underline">
      Hello world!
    </h1>