31 lines
607 B
TypeScript
31 lines
607 B
TypeScript
|
import { mergeConfig } from 'vite';
|
||
|
import eslint from 'vite-plugin-eslint';
|
||
|
import baseConfig from './vite.config.base';
|
||
|
import * as path from "path";
|
||
|
|
||
|
export default mergeConfig(
|
||
|
{
|
||
|
mode: 'development',
|
||
|
server: {
|
||
|
open: true,
|
||
|
fs: {
|
||
|
strict: true,
|
||
|
},
|
||
|
proxy:{
|
||
|
'/api': {
|
||
|
target: 'http://localhost:8080',
|
||
|
changeOrigin: true,
|
||
|
}
|
||
|
},
|
||
|
},
|
||
|
plugins: [
|
||
|
eslint({
|
||
|
cache: false,
|
||
|
include: ['src/**/*.ts', 'src/**/*.tsx', 'src/**/*.vue'],
|
||
|
exclude: ['node_modules'],
|
||
|
}),
|
||
|
],
|
||
|
},
|
||
|
baseConfig
|
||
|
);
|