Installation
Setting up Tailwind CSS in a Rspack project.
Start by creating a new Rspack project if you don’t have one set up already. The most common approach is to use Rspack CLI.
npm create rspack@latestInstall @tailwindcss/postcss and its peer dependencies.
npm install tailwindcss @tailwindcss/postcss postcss postcss-loaderIn your rspack.config.js file, enable the PostCSS loader. See the documentation for more information.
export default defineConfig({  // ...  module: {    rules: [      {        test: /\.css$/,        use: ["postcss-loader"],        type: "css",      },      // ...    ],  },}Create a postcss.config.mjs file in the root of your project and add the @tailwindcss/postcss plugin to your PostCSS configuration.
export default {  plugins: {    "@tailwindcss/postcss": {},  },};Add an @import to ./src/style.css that imports Tailwind CSS.
@import "tailwindcss";Run your build process with npm run dev.
npm run devStart using Tailwind’s utility classes to style your content.
<template>  <h1 class="text-3xl font-bold underline">    Hello world!  </h1></template>