14 lines
334 B
JavaScript
14 lines
334 B
JavaScript
/** @type {import('tailwindcss').Config} */
|
|
export default {
|
|
darkMode: 'class', // Change this based on your needs
|
|
content: ["./index.html", "./src/**/*.{js,ts,jsx,tsx}"],
|
|
theme: {
|
|
extend: {
|
|
backgroundImage: {
|
|
'plant': "url('/home/atharva/public/images/plant-1573.svg')",
|
|
}
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|