mirror of
https://github.com/roc-lang/roc.git
synced 2025-08-03 19:58:18 +00:00
12 lines
180 B
JavaScript
12 lines
180 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
mode: 'jit',
|
|
content: [
|
|
"./src/**/*.{js,jsx,ts,tsx}",
|
|
],
|
|
theme: {
|
|
extend: {},
|
|
},
|
|
plugins: [],
|
|
}
|
|
|