|
1
|
import apiFetch from "@wordpress/api-fetch"; |
|
2
|
|
|
3
|
// nonce and root |
|
4
|
apiFetch.use(apiFetch.createNonceMiddleware(prestoPlayer.nonce)); |
|
5
|
apiFetch.use( |
|
6
|
apiFetch.createRootURLMiddleware( |
|
7
|
prestoPlayer.root + prestoPlayer.wpVersionString |
|
8
|
) |
|
9
|
); |
|
10
|
|
|
11
|
export default apiFetch; |
|
12
|
|