The code in this repository is base on the Rebuilding iOS 15 with Tailwind CSS notes.
npm init vite
npm install -D tailwindcss@latest postcss@latest autoprefixer@latest
npx tailwindcss init -p
Modify line below.
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
Replace all line with lines below.
@tailwind base;
@tailwind components;
@tailwind utilities;