blob: 5ae9f47440e9e97377d59a84e5df1d116fb20909 [file] [log] [blame]
const path = require('path');
module.exports = function (context, options) {
return {
name: 'custom-docusaurus-plugin',
configureWebpack(config, isServer, utils) {
return {
output: {
...config.output,
publicPath:
context.i18n.currentLocale === 'en'
? 'https://cdn.selectdb.com/'
: 'https://cdn.selectdb.com/zh-CN/',
},
};
},
};
};