diff --git a/frontend/package.json b/frontend/package.json index 32f7de3..0cf7659 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -17,9 +17,13 @@ "vue": "^3.5.24" }, "devDependencies": { + "@tailwindcss/postcss": "^4.1.18", "@types/node": "^24.10.1", "@vitejs/plugin-vue": "^6.0.1", "@vue/tsconfig": "^0.8.1", + "autoprefixer": "^10.4.23", + "postcss": "^8.5.6", + "tailwindcss": "^4.1.18", "typescript": "~5.9.3", "vite": "^7.2.4", "vue-tsc": "^3.1.4" diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js new file mode 100644 index 0000000..1c87846 --- /dev/null +++ b/frontend/postcss.config.js @@ -0,0 +1,6 @@ +export default { + plugins: { + '@tailwindcss/postcss': {}, + autoprefixer: {}, + }, +} diff --git a/frontend/src/App.vue b/frontend/src/App.vue index 36ed741..872e2c4 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -4,18 +4,19 @@