Skip to content

Commit f4e2e10

Browse files
authored
feat(FR-2890): speed up Vite dev server for remote sessions (#7405)
1 parent 7d762f1 commit f4e2e10

6 files changed

Lines changed: 273 additions & 10 deletions

File tree

pnpm-lock.yaml

Lines changed: 89 additions & 8 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

react/package.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
"@cloudscape-design/board-components": "3.0.60",
1414
"@dicebear/collection": "^9.4.2",
1515
"@dicebear/core": "^9.4.2",
16+
"@dicebear/shapes": "^9.4.2",
1617
"@lobehub/fluent-emoji": "^2.0.0",
1718
"@lobehub/icons": "^5.4.0",
1819
"@melloware/react-logviewer": "^5.3.2",
@@ -118,6 +119,7 @@
118119
"@testing-library/jest-dom": "catalog:",
119120
"@testing-library/user-event": "catalog:",
120121
"@types/big.js": "catalog:",
122+
"@types/compression": "^1.8.1",
121123
"@types/jest": "catalog:",
122124
"@types/lodash": "catalog:",
123125
"@types/lodash-es": "catalog:",
@@ -136,6 +138,7 @@
136138
"babel-preset-react-app": "^10.1.0",
137139
"baseline-browser-mapping": "^2.10.18",
138140
"caniuse-lite": "^1.0.30001788",
141+
"compression": "^1.8.1",
139142
"eslint": "catalog:",
140143
"eslint-config-bai": "workspace:*",
141144
"eslint-plugin-import": "catalog:",

react/src/components/VFolderNodeIdenticon.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Copyright (c) 2015-2026 Lablup Inc. All rights reserved.
44
*/
55
import { VFolderNodeIdenticonFragment$key } from '../__generated__/VFolderNodeIdenticonFragment.graphql';
6-
import { shapes } from '@dicebear/collection';
76
import { createAvatar } from '@dicebear/core';
7+
import * as shapes from '@dicebear/shapes';
88
import { theme } from 'antd';
99
import React from 'react';
1010
import { graphql, useFragment } from 'react-relay';

react/src/components/VFolderNodeIdenticonV2.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
Copyright (c) 2015-2026 Lablup Inc. All rights reserved.
44
*/
55
import { VFolderNodeIdenticonV2Fragment$key } from '../__generated__/VFolderNodeIdenticonV2Fragment.graphql';
6-
import { shapes } from '@dicebear/collection';
76
import { createAvatar } from '@dicebear/core';
7+
import * as shapes from '@dicebear/shapes';
88
import { theme } from 'antd';
99
import React from 'react';
1010
import { graphql, useFragment } from 'react-relay';

0 commit comments

Comments
 (0)