1
mirror of https://github.com/xitanggg/open-resume synced 2025-02-05 20:12:45 +01:00
open-resume/tailwind.config.js

19 lines
386 B
JavaScript
Raw Normal View History

2023-05-31 16:13:27 +02:00
/** @type {import('tailwindcss').Config} */
module.exports = {
2023-06-24 08:06:24 +02:00
content: ["./src/app/**/*.{ts,tsx,mdx}"],
2023-05-31 16:13:27 +02:00
theme: {
extend: {
backgroundImage: {
2023-06-24 08:06:24 +02:00
dot: "url('/assets/dots.svg')",
2023-05-31 16:13:27 +02:00
},
},
},
2023-06-24 08:06:24 +02:00
corePlugins: {
aspectRatio: false,
},
plugins: [
require("tailwind-scrollbar")({ nocompatible: true }),
require("@tailwindcss/aspect-ratio"),
],
};