Commit 54ee1362297e5cb3ad71d011b4470500604d2004

Authored by Evandro Junior
1 parent 825cbe04

Fixed url for production

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
gulp/build.js
... ... @@ -45,7 +45,7 @@ gulp.task('html', ['inject', 'partials'], function () {
45 45 .pipe(jsFilter)
46 46 // production
47 47 .pipe($.if($.util.env.production, $.replace('$logProvider.debugEnabled(true);', '$logProvider.debugEnabled(false);')))
48   - .pipe($.if($.util.env.production, $.replace('http://hom.dialoga.gov.br', 'http://login.dialoga.gov.br')))
  48 + .pipe($.if($.util.env.production, $.replace('http://hom.dialoga.gov.br', 'http://dialoga.gov.br')))
49 49 .pipe($.if($.util.env.production, $.replace('http://hom.login.dialoga.gov.br', 'http://login.dialoga.gov.br')))
50 50 // staging
51 51 .pipe($.if($.util.env.staging, $.replace('http://dialoga.gov.br', 'http://hom.dialoga.gov.br')))
... ...