mirror of
https://git.mirrors.martin98.com/https://github.com/infiniflow/ragflow.git
synced 2025-05-29 01:28:42 +08:00

### What problem does this PR solve? feat: Test the database connection of the ExeSQL operator #1739 ### Type of change - [x] New Feature (non-breaking change which adds functionality)
41 lines
867 B
TypeScript
41 lines
867 B
TypeScript
import { defineConfig } from 'umi';
|
|
import { appName } from './src/conf.json';
|
|
import routes from './src/routes';
|
|
|
|
export default defineConfig({
|
|
title: appName,
|
|
outputPath: 'dist',
|
|
// alias: { '@': './src' },
|
|
npmClient: 'npm',
|
|
base: '/',
|
|
routes,
|
|
publicPath: '/',
|
|
esbuildMinifyIIFE: true,
|
|
icons: {},
|
|
hash: true,
|
|
favicons: ['/logo.svg'],
|
|
clickToComponent: {},
|
|
history: {
|
|
type: 'browser',
|
|
},
|
|
plugins: ['@react-dev-inspector/umi4-plugin', '@umijs/plugins/dist/dva'],
|
|
dva: {},
|
|
jsMinifier: 'terser',
|
|
lessLoader: {
|
|
modifyVars: {
|
|
hack: `true; @import "~@/less/index.less";`,
|
|
},
|
|
},
|
|
devtool: 'source-map',
|
|
copy: ['src/conf.json'],
|
|
proxy: {
|
|
'/v1': {
|
|
target: 'http://localhost:9380/',
|
|
changeOrigin: true,
|
|
ws: true,
|
|
logger: console,
|
|
// pathRewrite: { '^/v1': '/v1' },
|
|
},
|
|
},
|
|
});
|