Rsbuild supports building outputs for multiple environments. You can use environments to define different Rsbuild configurations for each environment.
Please refer to Multi-environment builds for more information.
type Environments = {
[name: string]: EnvironmentConfig;
};undefinedEnvironmentConfig is a subset of the Rsbuild configuration, supporting most options.
Since multiple environments share the same server instance, the following options are currently not supported in EnvironmentConfig:
server.*dev.watchFilesdev.cliShortcutsdev.setupMiddlewaresConfigure Rsbuild configuration for web (client) and node (SSR) environments:
export default {
// Shared configuration for all environments
resolve: {
alias: {
'@common': './src/common',
},
},
environments: {
// configuration for client
web: {
source: {
entry: {
index: './src/index.client.js',
},
},
output: {
target: 'web',
},
resolve: {
alias: {
'@common1': './src/web/common1',
},
},
},
// configuration for SSR
node: {
source: {
entry: {
index: './src/index.server.js',
},
},
output: {
target: 'node',
},
resolve: {
alias: {
'@common1': './src/ssr/common1',
},
},
},
},
};For the web environment, the merged Rsbuild configuration is:
const webConfig = {
source: {
entry: {
index: './src/index.client.js',
},
},
output: {
target: 'web',
},
resolve: {
alias: {
'@common': './src/common',
'@common1': './src/web/common1',
},
},
};For the node environment, the merged Rsbuild configuration is:
const nodeConfig = {
source: {
entry: {
index: './src/index.server.js',
},
},
output: {
target: 'node',
},
resolve: {
alias: {
'@common': './src/common',
'@common1': './src/ssr/common1',
},
},
};Since environment names are used in directory names and object property names, we recommend using only letters, numbers, -, _, and $. When other characters are used, Rsbuild will show a warning.
export default {
environments: {
someName: {}, // ✅
some_name: {}, // ✅
'some-name': {}, // ✅
'some:name': {}, // ❌
},
};