Skip to content

Commit

Permalink
feat: front end support for sql search
Browse files Browse the repository at this point in the history
  • Loading branch information
panshuai111 committed Nov 17, 2023
1 parent 7f3ee11 commit de76ffa
Show file tree
Hide file tree
Showing 64 changed files with 2,669 additions and 4,056 deletions.
43 changes: 0 additions & 43 deletions pkg/search/storage/elasticsearch/search_test.go

This file was deleted.

7 changes: 7 additions & 0 deletions ui/LEGAL.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Legal Disclaimer

Within this source code, the comments in Chinese shall be the original, governing version. Any comment in other languages are for reference only. In the event of any conflict between the Chinese language version comments and other language version comments, the Chinese language version shall prevail.

法律免责声明

关于代码注释部分,中文注释为官方版本,其它语言注释仅做参考。中文注释可能与其它语言注释存在不一致,当中文注释与其它语言注释存在不一致时,请以中文注释为准。
28 changes: 28 additions & 0 deletions ui/craco.config.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
const CracoLessPlugin = require("craco-less");
const CracoCSSModules = require("craco-css-modules");
const path = require("path");

module.exports = {
plugins: [
{
plugin: CracoLessPlugin,
options: {
lessLoaderOptions: {
lessOptions: {
modifyVars: {},
javascriptEnabled: true,
},
},
},
},
{
plugin: CracoCSSModules
}
],
webpack: {
// 配置别名,设置别名是为了让后续引用的地方减少路径的复杂度
alias: {
"@": path.resolve(__dirname, "src"),
},
},
}
Loading

0 comments on commit de76ffa

Please sign in to comment.