rsnext/packages/next/build/static-checker.ts

14 lines
367 B
TypeScript

import { isPageStatic } from './utils'
export default function worker(
options: any,
callback: (err: Error | null, data?: any) => void
) {
try {
const { serverBundle, runtimeEnvConfig } = options || ({} as any)
const isStatic = isPageStatic(serverBundle, runtimeEnvConfig)
callback(null, { isStatic })
} catch (error) {
callback(error)
}
}