9 lines
205 B
TypeScript
9 lines
205 B
TypeScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/renderer/index.html', './src/**/*.{vue,js,ts,jsx,tsx}'], // 包含的内容
|
|
theme: {
|
|
extend: {}
|
|
},
|
|
plugins: []
|
|
}
|