feat(设备导入): 实现CSV导入预览功能并优化导入流程

This commit is contained in:
zhang1106
2026-03-19 16:15:20 +08:00
parent a620575d92
commit b98e8ad9af
5 changed files with 917 additions and 324 deletions
+7 -7
View File
@@ -73,6 +73,13 @@ export default defineConfig({
build: {
outDir: 'dist',
sourcemap: false,
minify: 'terser',
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true
}
},
rollupOptions: {
output: {
manualChunks: {
@@ -85,13 +92,6 @@ export default defineConfig({
assetFileNames: '[ext]/[name]-[hash].[ext]',
compact: true
}
},
minify: 'terser',
terserOptions: {
compress: {
drop_console: true,
drop_debugger: true
}
}
},
optimizeDeps: {