mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
fix nextConfigFile logic
This commit is contained in:
parent
1020906e7a
commit
b072997c21
@ -27,9 +27,10 @@ export const configureConfig = async ({
|
||||
const findNextConfigFile = async (configDir: string) => {
|
||||
const supportedExtensions = ['mjs', 'js'];
|
||||
return supportedExtensions.reduce<Promise<undefined | string>>(
|
||||
async (ext, acc: string | undefined) => {
|
||||
if (!(await acc)) {
|
||||
acc = await findUp(`next.config.${ext}`, { cwd: configDir });
|
||||
async (acc, ext: string | undefined) => {
|
||||
const resolved = await acc;
|
||||
if (!resolved) {
|
||||
acc = findUp(`next.config.${ext}`, { cwd: configDir });
|
||||
}
|
||||
|
||||
return acc;
|
||||
|
Loading…
x
Reference in New Issue
Block a user