movie-explorer/tailwind.config.js

13 lines
235 B
JavaScript
Raw Normal View History

2024-10-05 14:12:47 +00:00
/** @type {import('tailwindcss').Config} */
export default {
content: ["./dist/index.html", "./src/**/*.{js,ts,jsx,tsx}"],
theme: {
2024-10-06 21:46:47 +00:00
extend: {
aspectRatio: {
poster: "2 / 3",
},
},
2024-10-05 14:12:47 +00:00
},
plugins: [],
};