- 移除了 @tailwindcss/vite 和 tailwindcss 依赖 - 在 index.html 中添加了 tailwindcss.js 脚本引用 - 调整了 Prettier 配置,增加了打印宽度
25 lines
512 B
JSON
25 lines
512 B
JSON
{
|
|
"name": "web",
|
|
"version": "0.0.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"scripts": {
|
|
"dev": "vite",
|
|
"build": "vite build",
|
|
"preview": "vite preview",
|
|
"format": "prettier --write src/"
|
|
},
|
|
"dependencies": {
|
|
"element-plus": "^2.9.8",
|
|
"vue": "^3.5.13",
|
|
"vue-router": "^4.5.0"
|
|
},
|
|
"devDependencies": {
|
|
"@vitejs/plugin-vue": "^5.2.3",
|
|
"@vitejs/plugin-vue-jsx": "^4.1.2",
|
|
"prettier": "3.5.3",
|
|
"vite": "^6.2.4",
|
|
"vite-plugin-vue-devtools": "^7.7.2"
|
|
}
|
|
}
|