-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathrsbuild.config.ts
More file actions
70 lines (67 loc) · 1.83 KB
/
rsbuild.config.ts
File metadata and controls
70 lines (67 loc) · 1.83 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
import { execFile } from 'node:child_process';
import path from 'node:path';
import { promisify } from 'node:util';
import { defineConfig, type RsbuildPlugin } from '@rsbuild/core';
import { pluginReact } from '@rsbuild/plugin-react';
import { Layers, pluginRSC } from 'rsbuild-plugin-rsc';
import type NodeHandler from './src/framework/entry.rsc';
const execFileAsync = promisify(execFile);
const pluginStaticGenerate = (): RsbuildPlugin => ({
name: 'static-generate',
setup(api) {
api.onAfterBuild(async () => {
const scriptPath = path.join(import.meta.dirname, 'generate.mjs');
const { stdout, stderr } = await execFileAsync('node', [scriptPath]);
if (stdout) console.log(stdout);
if (stderr) console.error(stderr);
});
},
});
export default defineConfig({
plugins: [
pluginReact(),
pluginRSC({
layers: {
ssr: path.join(import.meta.dirname, './src/framework/entry.ssr.tsx'),
},
}),
pluginStaticGenerate(),
],
environments: {
server: {
source: {
entry: {
index: {
import: './src/framework/entry.rsc.tsx',
layer: Layers.rsc,
},
},
},
output: {
distPath: {
root: 'dist/server',
},
},
},
client: {
source: {
entry: {
index: './src/framework/entry.client.tsx',
},
},
},
},
server: {
setup: ({ server, action }) => {
if (action === 'dev') {
// Custom middleware to handle RSC (React Server Components) requests
server.middlewares.use(async (req, res, next) => {
const indexModule = await server.environments.server.loadBundle<{
default: NodeHandler;
}>('index');
await indexModule.default.nodeHandler(req, res, next);
});
}
},
},
});