1
mirror of https://github.com/xitanggg/open-resume synced 2025-03-09 07:49:18 +01:00
open-resume/tailwind.config.js

19 lines
386 B
JavaScript
Raw Normal View History

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