simple-links/tailwind.config.js

12 lines
267 B
JavaScript
Raw Normal View History

2023-07-01 20:43:53 +00:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-07-10 04:08:39 +00:00
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./config.yml",
2023-07-10 04:08:39 +00:00
],
theme: {},
plugins: [],
2023-07-01 20:43:53 +00:00
};