Skip to content

Commit 4f1476c

Browse files
committed
Example correction
1 parent 75718d9 commit 4f1476c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -55,14 +55,14 @@ angular.module('yourApp', ['environment']).
5555
envServiceProvider.config({
5656
domains: {
5757
development: ['localhost', 'acme.dev.local'],
58-
production: ['acme.com', '*.acme.com', 'acme.dev.prod']
58+
production: ['acme.com', '*.acme.com', 'acme.dev.prod'],
5959
test: ['test.acme.com', 'acme.dev.test', 'acme.*.com'],
6060
// anotherStage: ['domain1', 'domain2']
6161
},
6262
vars: {
6363
development: {
6464
apiUrl: '//api.acme.dev.local/v1',
65-
staticUrl: '//static.acme.dev.local'
65+
staticUrl: '//static.acme.dev.local',
6666
// antoherCustomVar: 'lorem',
6767
// antoherCustomVar: 'ipsum'
6868
},
@@ -74,7 +74,7 @@ angular.module('yourApp', ['environment']).
7474
}
7575
production: {
7676
apiUrl: '//api.acme.com/v1',
77-
staticUrl: '//static.acme.com'
77+
staticUrl: '//static.acme.com',
7878
// antoherCustomVar: 'lorem',
7979
// antoherCustomVar: 'ipsum'
8080
},

0 commit comments

Comments
 (0)