mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-26 04:57:50 +02:00
* never apply trailingSlash to site root ('/baseUrl/') => only subroutes * add deprecation comment for loadContext.baseUrl in favor of loadContext.siteConfig.baseUrl * commit typo * useless code
11 lines
367 B
TypeScript
11 lines
367 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.
|
|
*/
|
|
|
|
export {default as applyTrailingSlash} from './applyTrailingSlash';
|
|
export type {ApplyTrailingSlashParams} from './applyTrailingSlash';
|
|
|
|
export {default as uniq} from './uniq';
|