perf: fix ai-assistant answer too long problem

pull/100/head
moonrailgun 2 years ago
parent 1384e4957c
commit b419f44d19

@ -34,6 +34,8 @@ const Tip = styled.div`
const Answer = styled.pre`
white-space: pre-wrap;
max-height: 50vh;
overflow: auto;
`;
const ActionButton = styled.div`

@ -18,6 +18,9 @@ import axios from 'axios';
const PROJECT_ROOT = path.resolve(__dirname, '../../../../../');
/**
* Entry
*/
(async () => {
const start = Date.now();
const paths = await globby(['**.tsx'], {

Loading…
Cancel
Save