import {defineConfig} from 'vite' import vue from '@vitejs/plugin-vue' import tailwindcss from "@tailwindcss/vite" import path from 'path' // https://vite.dev/config/ export default defineConfig({ plugins: [ vue(), tailwindcss() ], resolve: { alias: { '@': path.resolve(__dirname, './src') } }, server: { port: 10186, proxy: { '/api': { // target: 'http://127.0.0.1:18007/api/', target: 'http://127.0.0.1:8000/api/', changeOrigin: true, 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]`; } } } } })