x-render / scripts /dumi-plugin /redirect.ts
AbdulElahGwaith's picture
Upload folder using huggingface_hub
c9d0005 verified
Raw
History Blame Contribute Delete
221 Bytes
import { IApi } from 'dumi'
export default (api: IApi) => {
api.addEntryCodeAhead(() => {
const code = `
if(location.origin.includes('gitee')) location.href = 'https://xrender.fun'
`
return code
})
};