Dockerfile, tailwind

This commit is contained in:
Timothy Pidashev
2024-03-17 16:51:41 -07:00
parent 6a6804f43a
commit 65a46162d7
8 changed files with 840 additions and 48 deletions
+13
View File
@@ -0,0 +1,13 @@
/** @type {import('tailwindcss').Config} */
module.exports = {
content: [
"./src/pages/**/*.{js,ts,jsx,tsx,mdx}",
"./src/components/**/*.{js,ts,jsx,tsx,mdx}",
"./src/app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}"
],
theme: {
extend: {},
},
plugins: [],
};