Skip to content

Commit 588df8f

Browse files
author
Daron Jones
committed
fix(core) svg usage alongside <base> tag
Using fix specified here: angular/angular.js#8934 (comment) Fixes meanjs#1224, Fixes meanjs#1230
1 parent 6911b80 commit 588df8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/core/client/app/init.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
.config(bootstrapConfig);
1212

1313
function bootstrapConfig($locationProvider, $httpProvider) {
14-
$locationProvider.html5Mode(true).hashPrefix('!');
14+
$locationProvider.html5Mode({ enabled: true, requireBase: false }).hashPrefix('!');
1515

1616
$httpProvider.interceptors.push('authInterceptor');
1717
}

0 commit comments

Comments
 (0)