交易所前端蓝色ui 4.5 jiem
lxf
2025-04-18 6e2baa7ee29ba28647b0e544508018ee6f038ef6
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
 
 
 
/** @type {import('tailwindcss').Config} */
export default {
  content: [
    './src/**/*.{js,vue}',
  ],
  purge: [
    "./index.html",
    "./src/**/*.vue",
    "./src/**/*.js",
  ], //Tailwind 可以在生产构建中对未使用的样式优化
  theme: {
    // colors: {
    //   'desc': '#161E2F',
    //   'desc-gray': '#595959',
    // }, //自定义颜色命名,使用的时候就是
    extend: {},
  }, //配置一些变量
  plugins: [],
  // prefix: 'frpc-', //设置前缀
}