Skip to content

Commit 44e53e0

Browse files
authored
IBX-10269: Symlinks not working with react files (#2)
1 parent 7c2210d commit 44e53e0

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

ibexa.webpack.config.js

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,9 @@ module.exports = (Encore, { bundles, managers, setups }, modifyEncoreConfig) =>
2222
.enableForkedTypeScriptTypesChecking((tsConfig) => {
2323
tsConfig.async = true;
2424
})
25-
.enableReactPreset()
25+
.enableReactPreset((options) => {
26+
options.runtime = 'classic';
27+
})
2628
.enableSingleRuntimeChunk();
2729

2830
setups.forEach((configSetupPath) => {

0 commit comments

Comments
 (0)