talk_appAmin/tailwind.config.js

15 lines
434 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

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
},
};