diff --git a/frontend/package.json b/frontend/package.json index 91571362..92e989f0 100644 --- a/frontend/package.json +++ b/frontend/package.json @@ -44,6 +44,7 @@ "vuedraggable": "^4.1.0" }, "devDependencies": { + "@tailwindcss/vite": "^4.1.4", "@types/crypto-js": "^4.2.2", "@types/node": "^18.14.0", "@types/nprogress": "^0.2.0", @@ -52,14 +53,17 @@ "@typescript-eslint/parser": "^6.7.4", "@vitejs/plugin-vue": "^5.2.3", "@vue/compiler-sfc": "^3.5.13", - "code-inspector-plugin": "^0.4.5", + "autoprefixer": "^10.4.21", + "code-inspector-plugin": "^0.20.9", "dotenv": "^16.3.1", - "eslint": "^8.35.0", + "eslint": "^9.24.0", "eslint-plugin-vue": "^10.0.0", - "prettier": "^3.2.5", + "postcss": "^8.5.3", + "prettier": "^3.5.3", "sass": "^1.86.3", + "tailwindcss": "^4.1.4", "typescript": "^5.8.2", - "vite": "^6.2.6", + "vite": "^6.3.2", "vite-plugin-progress": "0.0.7", "vue-eslint-parser": "^10.1.3" }, diff --git a/frontend/postcss.config.js b/frontend/postcss.config.js new file mode 100644 index 00000000..67cdf1a5 --- /dev/null +++ b/frontend/postcss.config.js @@ -0,0 +1,6 @@ +module.exports = { + plugins: { + tailwindcss: {}, + autoprefixer: {}, + }, +}; diff --git a/frontend/src/App.vue b/frontend/src/App.vue index f12b60c7..9cd39012 100644 --- a/frontend/src/App.vue +++ b/frontend/src/App.vue @@ -1,13 +1,13 @@