mirror of
https://github.com/facebook/docusaurus.git
synced 2025-07-30 15:00:09 +02:00
57 lines
1.6 KiB
TypeScript
57 lines
1.6 KiB
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.
|
|
*/
|
|
import {LoadContext, Plugin} from '@docusaurus/types';
|
|
import {PluginOptions} from './types';
|
|
import {Configuration} from 'webpack';
|
|
|
|
import path from 'path';
|
|
|
|
export default function (
|
|
_context: LoadContext,
|
|
options: PluginOptions,
|
|
): Plugin<void> {
|
|
const isProd = process.env.NODE_ENV === 'production';
|
|
|
|
return {
|
|
name: 'docusaurus-plugin-ideal-image',
|
|
|
|
getThemePath() {
|
|
return path.resolve(__dirname, './theme');
|
|
},
|
|
|
|
configureWebpack(_config: Configuration, isServer: boolean) {
|
|
return {
|
|
mergeStrategy: {
|
|
'module.rules': 'prepend',
|
|
},
|
|
module: {
|
|
rules: [
|
|
{
|
|
test: /\.(png|jpe?g|gif)$/i,
|
|
use: [
|
|
require.resolve('@docusaurus/lqip-loader'),
|
|
{
|
|
loader: require.resolve('@endiliey/responsive-loader'),
|
|
options: {
|
|
emitFile: !isServer, // don't emit for server-side rendering
|
|
disable: !isProd,
|
|
// eslint-disable-next-line
|
|
adapter: require('@endiliey/responsive-loader/sharp'),
|
|
name: isProd
|
|
? 'assets/ideal-img/[name].[hash:hex:7].[width].[ext]'
|
|
: 'assets/ideal-img/[name].[width].[ext]',
|
|
...options,
|
|
},
|
|
},
|
|
],
|
|
},
|
|
],
|
|
},
|
|
};
|
|
},
|
|
};
|
|
}
|