mirror of
https://github.com/facebook/docusaurus.git
synced 2025-06-11 15:22:29 +02:00
17 lines
404 B
JavaScript
17 lines
404 B
JavaScript
/**
|
|
* Copyright (c) 2017-present, Facebook, Inc.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
const path = require('path');
|
|
|
|
module.exports = function() {
|
|
return {
|
|
name: 'docusaurus-plugin-website-infima',
|
|
getClientModules() {
|
|
return [path.resolve(__dirname, './infima-overrides')];
|
|
},
|
|
};
|
|
};
|