uni-app-wx-study/tailwind.config.js
2024-10-18 15:46:57 +08:00

31 lines
776 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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}",
"./components/**/*.{html,js,ts,jsx,tsx,vue}",
"./src/components/**/*.{html,js,ts,jsx,tsx,vue}"
],
corePlugins: {
// 跨多端可以 h5 开启,小程序关闭
preflight: false,
},
theme: {
extend: {},
},
plugins: [],
}