Reputation: 11
I am using Strapi with the next js. The code below is not rendering the page with Internet Explorer version 11. Can you please suggest what might be the issue?
import React, { useState } from 'react';
import Strapi from "strapi-sdk-javascript/build/main";
Upvotes: 1
Views: 161
Reputation: 1300
From the readme:
⚠️ This package not up to date and maintained ⚠️ https://github.com/strapi/strapi-sdk-javascript
So, I don't think use that SDK is a good decision right now. Move to axios, like suggest the comment or any good library you feel fine to consume de HTTP/graphQL API.
Upvotes: 1