mirror of
https://github.com/siv-org/siv.git
synced 2026-01-10 10:57:59 -05:00
10 lines
180 B
JavaScript
10 lines
180 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ['./src/**/*.tsx'],
|
|
corePlugins: {
|
|
preflight: false,
|
|
},
|
|
plugins: [],
|
|
theme: { extend: {} },
|
|
}
|