Using create-t3-app.

This commit is contained in:
th3r00t
2023-03-19 21:08:52 -04:00
parent 38cac3c105
commit 11c0c89624
34 changed files with 806 additions and 212 deletions

10
src/client/tailwind.config.cjs vendored Normal file
View File

@@ -0,0 +1,10 @@
/** @type {import('tailwindcss').Config} */
const config = {
content: ["./src/**/*.{js,ts,jsx,tsx}"],
theme: {
extend: {},
},
plugins: [],
};
module.exports = config;