uniapp-vue3-vite-ts-template/tailwind.config.js
2024-08-19 17:52:52 +08:00

12 lines
230 B
JavaScript

/** @type {import('tailwindcss').Config} */
export default {
content: ['./public/index.html', './src/**/*.{html,js,ts,jsx,tsx,vue}'],
theme: {
extend: {},
},
corePlugins: {
preflight: false,
},
plugins: [],
};