talk_appAmin/tailwind.config.js

15 lines
434 B
JavaScript
Raw Normal View History

2024-04-23 23:01:35 +08:00
const { resolve } = require('./shared')
/** @type {import('tailwindcss').Config} */
module.exports = {
// 需要tailwindcss提取的文件源假如你把组件加到了另外的文件则需要在下方添加表达式
content: ["./index.html", "./pages/**/*.vue", "./components/**/*.vue"].map(resolve),
theme: {
},
plugins: [],
corePlugins: {
preflight: false,
container: false
},
};