updated to work with tailwind

This commit is contained in:
SanjayramVempati 2023-01-29 20:57:49 -05:00 committed by GitHub
parent 1297eb4cca
commit d730a4fa88
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,11 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: ["./templates/**/*.html"],
content: [
"./templates/**/*.html",
"./static/src/**/*.js"
],
theme: {
extend: {},
extend: {},
},
plugins: [],
};
}