File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -199,7 +199,7 @@ async function buildNextConfig() {
199199 // eslint-disable-next-line prefer-destructuring
200200 const [ _0 , _1 , watch ] = process . argv ;
201201
202- configs . set ( '' , {
202+ configs . set ( 'botframework-webchat ' , {
203203 chunkNames : `botframework-webchat.[name]-[hash]` ,
204204 entryNames : `[name]` ,
205205 entryPoints : {
@@ -222,10 +222,10 @@ async function buildNextConfig() {
222222 const ourConfigs = [ ] ;
223223
224224 for ( const [ key , config ] of configs ) {
225- if ( ! key || key . startsWith ( 'botframework-webchat' ) ) {
225+ if ( key . startsWith ( 'botframework-webchat' ) ) {
226226 const ourConfig = { ...config , ...BASE_CONFIG } ;
227227
228- ourConfig . plugins . push ( createWatcherPlugin ( key || output ) ) ;
228+ ourConfig . plugins . push ( createWatcherPlugin ( key ) ) ;
229229
230230 ourConfigs . push ( ourConfig ) ;
231231 }
You can’t perform that action at this time.
0 commit comments