fix: 修复

This commit is contained in:
ningmengchongshui 2024-06-18 09:52:36 +08:00
parent ed7ff945d3
commit 4b2555de4a
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ export const createDynamic = (basePath: string) => {
return (path: string) => return (path: string) =>
import( import(
new URL( new URL(
`${path}${process.env.NODE_ENV == 'NODE_ENV' ? '' : now()}`, `${path}${process.env.NODE_ENV == 'production' ? '' : now()}`,
basePath basePath
).href ).href
) )