We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2f38f7 commit 4e02b74Copy full SHA for 4e02b74
packages/docusaurus-plugin-openapi-docs/src/openapi/openapi.ts
@@ -280,12 +280,6 @@ export async function readOpenapiFiles(
280
if (!isURL(openapiPath)) {
281
const stat = await fs.lstat(openapiPath);
282
if (stat.isDirectory()) {
283
- console.warn(
284
- chalk.yellow(
285
- "WARNING: Loading a directory of OpenAPI definitions is experimental and subject to unannounced breaking changes."
286
- )
287
- );
288
-
289
// TODO: Add config for inlcude/ignore
290
const allFiles = await Globby(["**/*.{json,yaml,yml}"], {
291
cwd: openapiPath,
0 commit comments