2025-01-23 11:43:45 +00:00
|
|
|
import { setupHttp } from '@/api/http'
|
2025-03-11 07:21:02 +00:00
|
|
|
import { setupHttp as setupHttp1} from '@/api-collect-code/http'
|
|
|
|
import { setupHttp as setupHttp2} from '@/api-public/http'
|
2025-01-16 07:40:06 +00:00
|
|
|
export default defineNuxtPlugin(() => {
|
|
|
|
setupHttp()
|
2025-03-02 09:31:04 +00:00
|
|
|
setupHttp1()
|
2025-03-11 07:21:02 +00:00
|
|
|
setupHttp2()
|
2025-01-16 07:40:06 +00:00
|
|
|
})
|
2025-03-11 07:21:02 +00:00
|
|
|
|