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 @@ -378,8 +378,8 @@ describe('The config-generator function', () => {
378
378
config . runtimeConfig . useDevServer = true ;
379
379
config . runtimeConfig . devServerUrl = 'http://localhost:8080/' ;
380
380
config . runtimeConfig . useHotModuleReplacement = false ;
381
- config . outputPath = '/tmp/public/build ' ;
382
- config . setPublicPath ( '/build/ ' ) ;
381
+ config . outputPath = '/tmp/public' ;
382
+ config . setPublicPath ( '/' ) ;
383
383
config . addEntry ( 'main' , './main' ) ;
384
384
385
385
const actualConfig = configGenerator ( config ) ;
@@ -392,8 +392,8 @@ describe('The config-generator function', () => {
392
392
config . runtimeConfig . useDevServer = true ;
393
393
config . runtimeConfig . devServerUrl = 'http://localhost:8080/' ;
394
394
config . runtimeConfig . useHotModuleReplacement = true ;
395
- config . outputPath = '/tmp/public/build ' ;
396
- config . setPublicPath ( '/build/ ' ) ;
395
+ config . outputPath = '/tmp/public' ;
396
+ config . setPublicPath ( '/' ) ;
397
397
config . addEntry ( 'main' , './main' ) ;
398
398
399
399
const actualConfig = configGenerator ( config ) ;
You can’t perform that action at this time.
0 commit comments