Rsbuild 支持同时为多个环境构建产物。你可以使用 environments
为每个环境定义不同的 Rsbuild 配置。
请查看 多环境构建 了解更多。
interface EnvironmentConfig {
dev?: Pick<
DevConfig,
'hmr' | 'assetPrefix' | 'progressBar' | 'lazyCompilation' | 'writeToDisk'
>;
html?: HtmlConfig;
tools?: ToolsConfig;
source?: SourceConfig;
output?: OutputConfig;
security?: SecurityConfig;
performance?: PerformanceConfig;
moduleFederation?: ModuleFederationConfig;
plugins?: RsbuildPlugins[];
}
type Environments = {
[name: string]: EnvironmentConfig;
};
undefined
分别为 web
(client) 和 node
(SSR) 环境配置 Rsbuild:
export default {
// 所有环境共享配置
source: {
alias: {
'@common': './src/common',
},
},
environments: {
// client 环境配置
web: {
source: {
alias: {
'@common1': './src/web/common1',
},
entry: {
index: './src/index.client.js',
},
},
output: {
target: 'web',
},
},
// SSR 环境配置
node: {
source: {
alias: {
'@common1': './src/ssr/common1',
},
entry: {
index: './src/index.server.js',
},
},
output: {
target: 'node',
},
},
},
};
对于 web
环境,合并后的 Rsbuild 配置为:
const webConfig = {
source: {
alias: {
'@common': './src/common',
'@common1': './src/web/common1',
},
entry: {
index: './src/index.client.js',
},
},
output: {
target: 'web',
},
};
对于 node
环境,合并后的 Rsbuild 配置为:
const nodeConfig = {
source: {
alias: {
'@common': './src/common',
'@common1': './src/ssr/common1',
},
entry: {
index: './src/index.server.js',
},
},
output: {
target: 'node',
},
};