16 lines
256 B
JavaScript
16 lines
256 B
JavaScript
module.exports = {
|
|
content: [
|
|
"./pages/**/*.{js,ts,jsx,tsx}",
|
|
"./components/**/*.{js,ts,jsx,tsx}",
|
|
],
|
|
theme: {
|
|
fontFamily: { default: ["Montserrat"] },
|
|
extend: {
|
|
backgroundImage: {
|
|
main: "url('main.jpg')",
|
|
},
|
|
},
|
|
},
|
|
plugins: [],
|
|
};
|