mirror of
https://github.com/siv-org/siv.git
synced 2026-05-03 03:00:59 -04: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: {} },
|
|
}
|