引入tailwind css,调整样式

This commit is contained in:
RockYang
2024-12-24 11:07:04 +08:00
parent fb403bde8b
commit 274cff71b1
51 changed files with 1892 additions and 2393 deletions

View File

@@ -9,14 +9,14 @@ module.exports = defineConfig({
configureWebpack: {
// disable performance hints
performance: {
hints: false
hints: false,
},
plugins: [new webpack.optimize.MinChunkSizePlugin({ minChunkSize: 10000 })],
resolve: {
alias: {
"@": path.resolve(__dirname, "src")
}
}
"@": path.resolve(__dirname, "src"),
},
},
},
publicPath: "/",
@@ -29,8 +29,8 @@ module.exports = defineConfig({
proxy: {
"/static/upload/": {
target: process.env.VUE_APP_API_HOST,
changeOrigin: true
}
}
}
changeOrigin: true,
},
},
},
});