初始化项目

This commit is contained in:
2025-06-09 16:51:58 +08:00
parent 7efc3dfd67
commit a3ad70de03
39 changed files with 3034 additions and 49 deletions

View File

@@ -15,7 +15,7 @@ export default defineConfig({
}
},
server: {
port: 8888,
port: 10186,
proxy: {
'/api': {
// target: 'http://127.0.0.1:18007/api/',
@@ -24,5 +24,19 @@ export default defineConfig({
rewrite: (path) => path.replace(/^\/api/, '')
}
}
},
build: {
assetsDir: 'assets/images',
rollupOptions: {
output: {
assetFileNames: (assetInfo) => {
let extType = assetInfo.name.split('.').at(1);
if (/png|jpe?g|svg|gif|tiff|bmp|ico/i.test(extType)) {
return `assets/images/[name]-[hash][extname]`;
}
return `assets/[name]-[hash][extname]`;
}
}
}
}
})