| const path = require('path'); | |
| const publicPath = process.env.TEST_ENV_URL || 'https://cdnd.selectdb.com'; | |
| module.exports = function (context, options) { | |
| return { | |
| name: 'custom-docusaurus-plugin', | |
| configureWebpack(config, isServer, utils) { | |
| return { | |
| output: { | |
| ...config.output, | |
| publicPath: context.i18n.currentLocale === 'en' ? `${publicPath}/` : `${publicPath}/zh-CN/`, | |
| }, | |
| }; | |
| }, | |
| }; | |
| }; |