File size: 156 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
export async function after({
distDir,
projectDir,
}: {
distDir: string
projectDir: string
}) {
throw new Error('error after production build')
}
|
1e92f2d |
1 2 3 4 5 6 7 8 9 10 |
export async function after({
distDir,
projectDir,
}: {
distDir: string
projectDir: string
}) {
throw new Error('error after production build')
}
|