mirror of
https://github.com/Spythere/srjp-td2.git
synced 2026-05-03 05:28:12 +00:00
12 lines
211 B
JavaScript
12 lines
211 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
content: [],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
darkMode: 'selector',
|
|
plugins: [],
|
|
purge: ['./index.html', './src/**/*.{vue,js,ts,jsx,tsx}'],
|
|
}
|
|
|