vite.config.dev.ts
695 Bytes
import { mergeConfig } from 'vite'
// import eslint from 'vite-plugin-eslint'
import baseConfig from './vite.config.base'
export default mergeConfig(
{
mode: 'development',
server: {
host: '0.0.0.0',
port: '8888',
open: true,
fs: {
strict: true,
},
proxy:{
'/dev-api': {
target:"http://10.9.0.116:9284",
changeOrigin: true,
rewrite: (path) => path.replace(/^\/dev-api/, '')
}
}
},
plugins: [
// eslint({
// cache: false,
// include: ['src/**/*.ts', 'src/**/*.tsx', 'src/**/*.vue'],
// exclude: ['node_modules'],
// }),
]
},
baseConfig
)