uni-app-wx-study/tailwind.config.js

31 lines
776 B
JavaScript
Raw Normal View History

2024-10-17 13:37:58 +08:00
const path = require("path");
const resolve = (p) => {
return path.resolve(__dirname, p);
};
/** @type {import('tailwindcss').Config} */
module.exports = {
// 增加前辍避免样式冲突
// prefix: 'zhs-',
// 注意此处,一定要 `path.resolve` 一下, 传入绝对路径
// 你要有其他目录,比如 components也必须在这里添加一下
content: [
"./index.html",
"./src/index.html",
"./pages/**/*.{html,js,ts,jsx,tsx,vue}",
"./src/pages/**/*.{html,js,ts,jsx,tsx,vue}",
2024-10-18 15:46:57 +08:00
"./components/**/*.{html,js,ts,jsx,tsx,vue}",
"./src/components/**/*.{html,js,ts,jsx,tsx,vue}"
2024-10-17 13:37:58 +08:00
],
corePlugins: {
// 跨多端可以 h5 开启,小程序关闭
preflight: false,
},
theme: {
extend: {},
},
plugins: [],
}