mirror of
https://github.com/facebook/docusaurus.git
synced 2025-12-26 01:33:02 +00:00
* Use isolatedModules * better solution for useDocs? * fix blog-only mode * fix bad useDocs import
12 lines
464 B
TypeScript
12 lines
464 B
TypeScript
/**
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
// Re-expose useDocs
|
|
// Ensure it's always statically available even if user is not using the docs plugin
|
|
// Problem reported for the blog-only mode: https://github.com/facebook/docusaurus/issues/3360
|
|
export * from '@docusaurus/plugin-content-docs/lib/theme/hooks/useDocs';
|