docs: added code blocks without headers (#2560)

This commit is contained in:
Shahed Nasser
2022-11-07 17:36:51 +02:00
committed by GitHub
parent bbf4039147
commit c0639ef708
35 changed files with 336 additions and 98 deletions
@@ -19,7 +19,7 @@ You can check out more information in [NPMs documentation](https://docs.npmjs
If you install the Medusa CLI tool with Yarn, then try to use the CLI tool but get the error:
```bash
```bash noHeader
command not found: medusa
```
@@ -12,7 +12,7 @@ For that reason, when the `start` and `build` scripts in `www/docs` are used, th
If you receive the following error when you run the `build` command in `www/docs`:
```bash
```bash noHeader
FATAL ERROR: Ineffective mark-compacts near heap limit Allocation failed - JavaScript heap out of memory
```
+1 -1
View File
@@ -2,7 +2,7 @@
If you're using the [S3 Plugin](../add-plugins/s3.md) and, when you upload an image, you receive the following error on your Medusa server:
```bash
```bash noHeader
AccessControlListNotSupported: The bucket does not allow ACLs
```
@@ -2,7 +2,7 @@
If you've created a new Medusa server with the `--seed` option or used the `seed` script or command, the default credentials are:
```bash
```bash noHeader
email: admin@medusa-test.com
password: supersecret
```
@@ -6,7 +6,7 @@ However, this comes at the expense of important features that are needed in a pr
Therefore, you might experience the following error when going through a checkout flow in one of Medusa's starters while using SQLite:
```bash
```bash noHeader
Error: Transaction already started for the given connection, commit current transaction before starting a new one.
```
@@ -46,7 +46,7 @@ medusa migrations run
If you want to add demo data into your server, you should also seed the database using the following command:
```bash npm2yarn
```bash npm2yarn noHeader
npm run seed
```