2022-08-09 01:34:58 +02:00
|
|
|
/** @type {import('tailwindcss').Config} */
|
|
|
|
module.exports = {
|
2022-08-20 22:29:54 +02:00
|
|
|
content: [
|
|
|
|
'./src/pages/**/*.{js,ts,jsx,tsx}',
|
|
|
|
'./arc/components/**/*.{js,ts,jsx,tsx}',
|
|
|
|
],
|
2022-08-09 01:34:58 +02:00
|
|
|
theme: {
|
|
|
|
extend: {},
|
|
|
|
},
|
|
|
|
plugins: [],
|
|
|
|
}
|