26 lines
473 B
JavaScript
26 lines
473 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [
|
|
'./index.html',
|
|
'./pages/**/*.{vue,js,ts,jsx,tsx}',
|
|
'./components/**/*.{vue,js,ts,jsx,tsx}',
|
|
'./App.vue'
|
|
],
|
|
theme: {
|
|
extend: {
|
|
colors: {
|
|
primary: '#3498db',
|
|
success: '#27ae60',
|
|
warning: '#f39c12',
|
|
error: '#e74c3c',
|
|
info: '#909399'
|
|
}
|
|
}
|
|
},
|
|
plugins: [],
|
|
// uni-app 配置
|
|
corePlugins: {
|
|
preflight: false
|
|
}
|
|
}
|