diff --git a/web-ui/web-react/postcss.config.js b/web-ui/web-react/postcss.config.js new file mode 100644 index 00000000..33ad091d --- /dev/null +++ b/web-ui/web-react/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +} diff --git a/web-ui/web-react/tailwind.config.js b/web-ui/web-react/tailwind.config.js new file mode 100644 index 00000000..1490793a --- /dev/null +++ b/web-ui/web-react/tailwind.config.js @@ -0,0 +1,10 @@ +/** @type {import('tailwindcss').Config} */ +module.exports = { + content: [ + "./src/**/*.{js,jsx,ts,tsx}", + ], + theme: { + extend: {}, + }, + plugins: [], +}