chore: migrate PostCSS and Tailwind configuration to .mjs format

This commit is contained in:
MythEclipse
2026-05-07 21:03:30 +07:00
parent b0dde3c885
commit 262dbfafbe
2 changed files with 4 additions and 4 deletions
+11
View File
@@ -0,0 +1,11 @@
/** @type {import('tailwindcss').Config} */
export default {
content: [
"./app/**/*.{js,ts,jsx,tsx,mdx}",
"./src/**/*.{js,ts,jsx,tsx,mdx}",
],
theme: {
extend: {},
},
plugins: [],
};