alpha
Login
or
Join now
nandi.uk
/
semble
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
This repository has no description
Star
0
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
chore: enable react compiler
author
pdelfan
date
2 months ago
(May 21, 2026, 3:00 PM -0700)
commit
de079efe
de079efea3a12c9e947d3bc2efaa9e760a4b2957
parent
96f4a4f2
96f4a4f279a86c5b2ec8fbfc11ed39b09b27c7ed
+13
-3
3 changed files
Expand all
Collapse all
Unified
Split
package-lock.json
src
webapp
next.config.mjs
package.json
+11
-3
package-lock.json
View file
Reviewed
···
1264
1264
"version": "7.27.1",
1265
1265
"resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.27.1.tgz",
1266
1266
"integrity": "sha512-qMlSxKbpRlAridDExk92nSobyDdpPijUq2DW6oDnUqd0iOGxmQjyqhMIihI9+zv4LPyZdRje2cavWPbCbWm3eA==",
1267
1267
-
"devOptional": true,
1268
1267
"engines": {
1269
1268
"node": ">=6.9.0"
1270
1269
}
···
1273
1272
"version": "7.28.5",
1274
1273
"resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.28.5.tgz",
1275
1274
"integrity": "sha512-qSs4ifwzKJSV39ucNjsvc6WVHs6b7S03sOh2OcHF9UHfVPqWWALUsNUVzhSBiItjRZoLHx7nIarVjqKVusUZ1Q==",
1276
1276
-
"devOptional": true,
1277
1275
"license": "MIT",
1278
1276
"engines": {
1279
1277
"node": ">=6.9.0"
···
1583
1581
"version": "7.29.0",
1584
1582
"resolved": "https://registry.npmjs.org/@babel/types/-/types-7.29.0.tgz",
1585
1583
"integrity": "sha512-LwdZHpScM4Qz8Xw2iKSzS+cfglZzJGvofQICy7W7v4caru4EaAmyUuO6BGrbyQ2mYV11W0U8j5mBhd14dd3B0A==",
1586
1586
-
"devOptional": true,
1587
1584
"license": "MIT",
1588
1585
"dependencies": {
1589
1586
"@babel/helper-string-parser": "^7.27.1",
···
14198
14195
},
14199
14196
"engines": {
14200
14197
"node": "^14.15.0 || ^16.10.0 || >=18.0.0"
14198
14198
+
}
14199
14199
+
},
14200
14200
+
"node_modules/babel-plugin-react-compiler": {
14201
14201
+
"version": "1.0.0",
14202
14202
+
"resolved": "https://registry.npmjs.org/babel-plugin-react-compiler/-/babel-plugin-react-compiler-1.0.0.tgz",
14203
14203
+
"integrity": "sha512-Ixm8tFfoKKIPYdCCKYTsqv+Fd4IJ0DQqMyEimo+pxUOMUR9cVPlwTrFt9Avu+3cb6Zp3mAzl+t1MrG2fxxKsxw==",
14204
14204
+
"license": "MIT",
14205
14205
+
"peer": true,
14206
14206
+
"dependencies": {
14207
14207
+
"@babel/types": "^7.26.0"
14201
14208
}
14202
14209
},
14203
14210
"node_modules/babel-preset-current-node-syntax": {
···
32189
32196
"@types/mdx": "^2.0.13",
32190
32197
"@vercel/analytics": "^1.5.0",
32191
32198
"@vidstack/react": "^1.12.13",
32199
32199
+
"babel-plugin-react-compiler": "^1.0.0",
32192
32200
"capnweb": "^0.6.1",
32193
32201
"date-fns": "^4.1.0",
32194
32202
"dayjs": "^1.11.13",
+1
src/webapp/next.config.mjs
View file
Reviewed
···
2
2
3
3
/** @type {import('next').NextConfig} */
4
4
const nextConfig = {
5
5
+
reactCompiler: true,
5
6
reactStrictMode: false,
6
7
serverExternalPackages: ['jsdom', '@mozilla/readability', 'dompurify'],
7
8
// Configure `pageExtensions` to include markdown and MDX files
+1
src/webapp/package.json
View file
Reviewed
···
46
46
"@types/mdx": "^2.0.13",
47
47
"@vercel/analytics": "^1.5.0",
48
48
"@vidstack/react": "^1.12.13",
49
49
+
"babel-plugin-react-compiler": "^1.0.0",
49
50
"capnweb": "^0.6.1",
50
51
"date-fns": "^4.1.0",
51
52
"dayjs": "^1.11.13",