这是我的顺风配置文件。我已经尝试了 stackoverflow 中可用的其他一些内容仍然不起作用。
除了内容之外还有其他任何想法吗?还有其他错误吗?提前谢谢
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./src/**/*.js"],
theme: {
extend: {},
},
plugins: [],
}
确保您已在 index.css 文件中添加以下内容
@tailwind base;
@tailwind components;
@tailwind utilities;
在 tailwind.config.js 文件中
content: [
"./src/**/*.{js,jsx,ts,tsx}",
],
了解更多详情 https://tailwindcss.com/docs/installation/framework-guides