You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
651 B
TypeScript
31 lines
651 B
TypeScript
import { mergeConfig } from 'vite';
|
|
import eslint from 'vite-plugin-eslint';
|
|
import baseConfig from './vite.config.base';
|
|
|
|
export default mergeConfig(
|
|
{
|
|
mode: 'development',
|
|
server: {
|
|
open: true,
|
|
fs: {
|
|
strict: true,
|
|
},
|
|
proxy: {
|
|
'/v3/api': {
|
|
target: 'http://127.0.0.1:8080',
|
|
changeOrigin: true,
|
|
rewrite: (path: string) => path.replace(/^\/v3\/api/, ''),
|
|
},
|
|
},
|
|
},
|
|
plugins: [
|
|
eslint({
|
|
cache: false,
|
|
include: ['src/**/*.ts', 'src/**/*.tsx', 'src/**/*.vue'],
|
|
exclude: ['node_modules'],
|
|
}),
|
|
],
|
|
},
|
|
baseConfig
|
|
);
|