File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change 6161 "serve" : " http-server -c-1" ,
6262 "serve-tls" : " http-server -S -C certs/chat.example.org.crt -K certs/chat.example.org.key" ,
6363 "devserver" : " npx rspack serve --config rspack/rspack.serve.js" ,
64- "watch" : " rspack build --watch --config rspack/rspack.build.js --mode=development " ,
64+ "watch" : " npm run devserver " ,
6565 "types" : " tsc -p ./src/log/tsconfig.json && tsc -p ./src/headless/tsconfig.json && tsc" ,
6666 "check:types" : " tsc --noEmit"
6767 },
Original file line number Diff line number Diff line change @@ -8,11 +8,14 @@ module.exports = merge(common, {
88 'converse' : path . resolve ( __dirname , '../src/entry.js' ) ,
99 } ,
1010 devtool : 'inline-source-map' ,
11+ optimization : {
12+ minimize : false ,
13+ } ,
1114 devServer : {
1215 static : {
1316 directory : path . resolve ( __dirname , '../' ) ,
1417 } ,
15- port : 3003 ,
18+ port : 8008 ,
1619 allowedHosts : [ 'localhost' ] ,
1720 devMiddleware : {
1821 publicPath : '/dist/' ,
You can’t perform that action at this time.
0 commit comments