24
loading...
This website collects cookies to deliver better user experience
build
├── index.html
└── static
├── css
│ └── index.css
└── js
└── index.js
create-contentful-app
or create-react-app
, you can simply runnpm run build
index.html
file at the root.build
├── index.html
└── static
├── css
│ └── index.css
└── js
└── index.js
Your app doesn't have an index.html file in the root of the uploaded bundle.
You are uploading a Zip that encapsulates the root directory instead of the content directly. Most of the time, the common fix is to navigate into your root directory, select all your files, and zip it at that level.
Your upload succeeds but the app doesn't load or appear in the UI. This could be caused by an error in your app's index.html or the JavaScript that it executes. A look at the developer console should provide some hints.
24