mirror of
https://github.com/strapi/strapi.git
synced 2025-09-19 21:38:05 +00:00

* fix: <svg> attribute width="2rem" error in Safari I changed the with and height value for all svgs used in the LeftMenu. It was changed from 2rem to 20px. Rem was leading to the error message Error: Invalid value for <svg> attribute width="2rem" in the safari browser. * fix: <svg> attribute width="1.2rem" error in Safari I changed the with and height value for all svgs used in the Onboarding. It was changed from 1.2rem to 12px. Rem was leading to the error message Error: Invalid value for attribute width="1.2rem" in the safari browser. * Update packages/core/admin/admin/src/components/LeftMenu.tsx Co-authored-by: Simone <startae14@gmail.com> * 12px => 12 --------- Co-authored-by: Simone <startae14@gmail.com>
Strapi built-in admin panel
Description
This is the admin panel package
Contribute
You can read the contribution guide here
Setup
Create a new Strapi project: strapi new myApp
.
Go in your project: cd myApp
.
Development
Start the React application: cd myApp/admin
, then npm start
.
The admin panel should now be available at http://localhost:4000.
Build
In order to check your updates, you can build the admin panel: cd myApp
, then npm run build
.