We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cab4b7b commit 312d347Copy full SHA for 312d347
packages/waku/src/lib/builder/build.ts
@@ -749,6 +749,7 @@ export async function build(options: {
749
const cssAssets = clientBuildOutput.output.flatMap(({ type, fileName }) =>
750
type === 'asset' && fileName.endsWith('.css') ? [fileName] : [],
751
);
752
+ platformObject.buildOptions.unstable_phase = 'emitStaticFiles';
753
await emitStaticFiles(
754
rootDir,
755
config,
packages/waku/src/server.ts
@@ -33,7 +33,8 @@ type PlatformObject = {
33
| 'buildServerBundle'
34
| 'buildSsrBundle'
35
| 'buildClientBundle'
36
- | 'buildDeploy';
+ | 'buildDeploy'
37
+ | 'emitStaticFiles';
38
};
39
} & Record<string, unknown>;
40
0 commit comments