♻️ refactor: delete /settings/newapi pages in nextjs build (#10278)

refactor: delete /settings/newapi pages in nextjs build
This commit is contained in:
Shinji-Li
2025-11-18 11:52:50 +08:00
committed by GitHub
parent 6c095a6652
commit 9d067534ae
2 changed files with 4 additions and 0 deletions

View File

@@ -1,3 +1,4 @@
import NewAPI from './newapi';
import ProviderGrid from '../(list)/ProviderGrid';
import Azure from './azure';
import AzureAI from './azureai';
@@ -38,6 +39,9 @@ const ProviderDetailPage = (props: { id?: string | null }) => {
case 'ollama': {
return <Ollama />;
}
case 'newapi': {
return <NewAPI />;
}
case 'openai': {
return <OpenAI />;
}