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