diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js new file mode 100644 index 0000000..7595f17 --- /dev/null +++ b/frontend/postcss.config.js @@ -0,0 +1,5 @@ +export default { + plugins: { + '@tailwindcss/postcss': {}, + }, +}; \ No newline at end of file diff --git a/frontend/tailwind.config.js b/frontend/tailwind.config.js new file mode 100644 index 0000000..94c1766 --- /dev/null +++ b/frontend/tailwind.config.js @@ -0,0 +1,11 @@ +const plugin = require("tailwindcss/plugin"); + +/** @type {import("tailwindcss").Config} */ +module.exports = { + theme: { + extend : { + } + }, + plugins: [ + ] +};