File tree Expand file tree Collapse file tree 4 files changed +6
-4
lines changed
Expand file tree Collapse file tree 4 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -115,7 +115,7 @@ const customBuildQuery: BuildQueryFactory = introspectionResults => {
115115export default ( ) => {
116116 const dataProvider = buildApolloClient ( {
117117 clientOptions : {
118- uri : 'http ://localhost:4000/graphql' ,
118+ uri : 'https ://localhost:4000/graphql' ,
119119 } ,
120120 introspection : {
121121 operationNames : {
Original file line number Diff line number Diff line change 11import simpleRestProvider from 'ra-data-simple-rest' ;
22
3- export default simpleRestProvider ( 'http ://localhost:4000' ) ;
3+ export default simpleRestProvider ( 'https ://localhost:4000' ) ;
Original file line number Diff line number Diff line change @@ -18,6 +18,8 @@ export default async (type: string) => {
1818 ) ;
1919 }
2020 }
21- const worker = setupWorker ( http . all ( / h t t p : \/ \/ l o c a l h o s t : 4 0 0 0 / , fakeServer ) ) ;
21+ const worker = setupWorker (
22+ http . all ( / h t t p s : \/ \/ l o c a l h o s t : 4 0 0 0 / , fakeServer )
23+ ) ;
2224 return worker ;
2325} ;
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ import generateData from 'data-generator-retail';
44export default ( ) => {
55 const data = generateData ( ) ;
66 const adapter = new MswAdapter ( {
7- baseUrl : 'http ://localhost:4000' ,
7+ baseUrl : 'https ://localhost:4000' ,
88 data,
99 loggingEnabled : true ,
1010 middlewares : [ withDelay ( 300 ) ] ,
You can’t perform that action at this time.
0 commit comments