File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -471,8 +471,8 @@ describe('The config-generator function', () => {
471
471
config . runtimeConfig . useDevServer = true ;
472
472
config . runtimeConfig . devServerUrl = 'http://localhost:8080/' ;
473
473
config . runtimeConfig . useHotModuleReplacement = false ;
474
- config . outputPath = '/tmp/public/build ' ;
475
- config . setPublicPath ( '/build/ ' ) ;
474
+ config . outputPath = '/tmp/public' ;
475
+ config . setPublicPath ( '/' ) ;
476
476
config . addEntry ( 'main' , './main' ) ;
477
477
478
478
const actualConfig = configGenerator ( config ) ;
@@ -485,8 +485,8 @@ describe('The config-generator function', () => {
485
485
config . runtimeConfig . useDevServer = true ;
486
486
config . runtimeConfig . devServerUrl = 'http://localhost:8080/' ;
487
487
config . runtimeConfig . useHotModuleReplacement = true ;
488
- config . outputPath = '/tmp/public/build ' ;
489
- config . setPublicPath ( '/build/ ' ) ;
488
+ config . outputPath = '/tmp/public' ;
489
+ config . setPublicPath ( '/' ) ;
490
490
config . addEntry ( 'main' , './main' ) ;
491
491
492
492
const actualConfig = configGenerator ( config ) ;
You can’t perform that action at this time.
0 commit comments