配置文件修改

main
jiangxucong 3 months ago
parent ccad35f169
commit dd4adbcdc2

@ -1,5 +1,5 @@
## Base image for all the stages ## Base image for all the stages
FROM node:20-slim AS base FROM node:22-slim AS base
ARG USE_CN_MIRROR ARG USE_CN_MIRROR
@ -67,7 +67,7 @@ RUN \
# Enable corepack # Enable corepack
&& corepack enable \ && corepack enable \
# Use pnpm for corepack # Use pnpm for corepack
&& corepack use pnpm \ && corepack use $(sed -n 's/.*"packageManager": "\(.*\)".*/\1/p' package.json) \
# Install the dependencies # Install the dependencies
&& pnpm i \ && pnpm i \
# Add sharp dependencies # Add sharp dependencies

@ -123,7 +123,7 @@
"@lobehub/chat-plugins-gateway": "^1.9.0", "@lobehub/chat-plugins-gateway": "^1.9.0",
"@lobehub/icons": "^1.33.7", "@lobehub/icons": "^1.33.7",
"@lobehub/tts": "^1.24.3", "@lobehub/tts": "^1.24.3",
"@lobehub/ui": "^1.150.3", "@lobehub/ui": "1.150.3",
"@neondatabase/serverless": "^0.9.4", "@neondatabase/serverless": "^0.9.4",
"@next/third-parties": "^14.2.6", "@next/third-parties": "^14.2.6",
"@react-spring/web": "^9.7.3", "@react-spring/web": "^9.7.3",

@ -728,7 +728,7 @@ const ApplicationSet = memo(() => {
url: "/flxai/api/robot/apptoolsset/getAllAiTools", url: "/flxai/api/robot/apptoolsset/getAllAiTools",
}).then((response) => { }).then((response) => {
if (response.code === 0) { if (response.code === 0) {
console.log(response,"2222") // console.log(response,"2222")
setStData(response.data); setStData(response.data);
} }
}).catch(error => { }).catch(error => {

Loading…
Cancel
Save