Skip to content

Commit

Permalink
🐛 fix: Fix path
Browse files Browse the repository at this point in the history
  • Loading branch information
canisminor1990 committed Jan 27, 2024
1 parent f557bb8 commit d895547
Show file tree
Hide file tree
Showing 10 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion src/pages/api/danmaku.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PluginErrorType, createErrorResponse } from '@lobehub/chat-plugin-sdk';

import { fetchDanmaku } from '../servers/fetchDanmaku';
import { fetchDanmaku } from '@/servers/fetchDanmaku';

export const config = {
runtime: 'edge',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/hot-search.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PluginErrorType, createErrorResponse } from '@lobehub/chat-plugin-sdk';

import { fetchHotSearch } from '../servers/fetchHotSearch';
import { fetchHotSearch } from '@/servers/fetchHotSearch';

export const config = {
runtime: 'edge',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/popular.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PluginErrorType, createErrorResponse } from '@lobehub/chat-plugin-sdk';

import { fetchPopular } from '../servers/fetchPopular';
import { fetchPopular } from '@/servers/fetchPopular';

export const config = {
runtime: 'edge',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/replay.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PluginErrorType, createErrorResponse } from '@lobehub/chat-plugin-sdk';

import { fetchReplay } from '../servers/fetchReplay';
import { fetchReplay } from '@/servers/fetchReplay';

export const config = {
runtime: 'edge',
Expand Down
2 changes: 1 addition & 1 deletion src/pages/api/search.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { PluginErrorType, createErrorResponse } from '@lobehub/chat-plugin-sdk';

import { fetchSearch } from '../servers/fetchSearch';
import { fetchSearch } from '@/servers/fetchSearch';

export const config = {
runtime: 'edge',
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit d895547

Please sign in to comment.