Spaces:
Sleeping
Sleeping
| /** @type {import('tailwindcss').Config} */ | |
| module.exports = { | |
| content: [ | |
| "./components/**/*.{js,vue,ts}", | |
| "./layouts/**/*.vue", | |
| "./pages/**/*.vue", | |
| "./plugins/**/*.{js,ts}", | |
| "./app.vue", | |
| "./error.vue", | |
| ], | |
| theme: { | |
| extend: { | |
| colors: { | |
| primary: '#1890ff', | |
| }, | |
| }, | |
| }, | |
| plugins: [], | |
| } | |