fork of hey-api/openapi-ts because I need some additional things
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

chore: build fix

+8 -7
+8 -7
packages/nuxt/src/module.ts
··· 60 60 config.watch = false; 61 61 } 62 62 63 - const outputPath = Array.isArray(config.output) 64 - ? typeof config.output[0] === 'string' 65 - ? config.output[0] 66 - : config.output[0]?.path 67 - : typeof config.output === 'string' 68 - ? config.output 69 - : config.output.path; 63 + const outputPath = 64 + config.output instanceof Array 65 + ? typeof config.output[0] === 'string' 66 + ? config.output[0] 67 + : config.output[0]?.path 68 + : typeof config.output === 'string' 69 + ? config.output 70 + : config.output.path; 70 71 71 72 const folder = path.resolve( 72 73 nuxt.options.rootDir,