mirror of
https://github.com/xitanggg/open-resume
synced 2024-11-03 09:19:21 +01:00
19 lines
386 B
JavaScript
19 lines
386 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
module.exports = {
|
|
content: ["./src/app/**/*.{ts,tsx,mdx}"],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
dot: "url('/assets/dots.svg')",
|
|
},
|
|
},
|
|
},
|
|
corePlugins: {
|
|
aspectRatio: false,
|
|
},
|
|
plugins: [
|
|
require("tailwind-scrollbar")({ nocompatible: true }),
|
|
require("@tailwindcss/aspect-ratio"),
|
|
],
|
|
};
|