tailwind.config.js 389 B

123456789101112131415161718
  1. /*
  2. * @Author: June 1601745371@qq.com
  3. * @Date: 2024-04-17 09:31:52
  4. * @LastEditors: June 1601745371@qq.com
  5. * @LastEditTime: 2024-04-17 10:06:37
  6. * @FilePath: \sd-designer\tailwind.config.js
  7. * @Description: tailwind配置
  8. */
  9. /** @type {import('tailwindcss').Config} */
  10. module.exports = {
  11. content: ['./src/**/*.{vue,js,ts,jsx,tsx}'],
  12. theme: {
  13. extend: {},
  14. },
  15. plugins: [],
  16. }