File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -11,7 +11,10 @@ import * as esbuild from 'esbuild';
1111 const config = {
1212 bundle : true ,
1313 chunkNames : 'react-dom/[name]-[hash]' ,
14- entryPoints : { 'react-dom' : './src/index.ts' , 'react-dom/client' : './src/client.ts' } ,
14+ entryPoints : {
15+ 'react-dom' : './src/index.ts' ,
16+ 'react-dom/client' : './src/client.ts'
17+ } ,
1518 format : 'esm' ,
1619 outdir : './dist/' ,
1720 platform : 'browser' ,
Original file line number Diff line number Diff line change @@ -13,7 +13,9 @@ import * as esbuild from 'esbuild';
1313 } ,
1414 bundle : true ,
1515 chunkNames : 'react-dom/[name]-[hash]' ,
16- entryPoints : { 'react-dom' : './src/index.ts' } ,
16+ entryPoints : {
17+ 'react-dom' : './src/index.ts'
18+ } ,
1719 format : 'esm' ,
1820 outdir : './dist/' ,
1921 platform : 'browser' ,
You can’t perform that action at this time.
0 commit comments