This commit is contained in:
2026-03-23 09:58:40 -03:00
parent 9c9c7dff09
commit 8186bb5fe6
40 changed files with 3996 additions and 17 deletions

View File

@@ -0,0 +1,23 @@
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import { resolve } from 'path'
export default defineConfig({
plugins: [vue()],
base: '/detection/',
resolve: {
alias: {
'@': resolve(__dirname, 'src'),
},
},
server: {
port: 5175,
allowedHosts: ['mpr.local.ar'],
proxy: {
'/api': {
target: 'http://localhost:8702',
changeOrigin: true,
},
},
},
})