- Move the admin plugin's options to the Admin Configuration documentation. - Add a section on how to change the backend URL for both development and production. - Fix the troubleshooting section related to port forwarding. - General fixes.
44 lines
857 B
Plaintext
44 lines
857 B
Plaintext
---
|
|
title: 'Common Create-React-App Errors'
|
|
---
|
|
|
|
import TypeError from './create-medusa-app-errors/_typeerror.md'
|
|
import OtherErrors from './create-medusa-app-errors/_other-errors.mdx'
|
|
import InvalidTokenError from './create-medusa-app-errors/_no-browser-token-error.md'
|
|
import DockerSection from "./database-errors/_docker.md"
|
|
import DbUrlError from './create-medusa-app-errors/_db-url-error.md'
|
|
import ForwardingError from './create-medusa-app-errors/_forwarding.md'
|
|
|
|
## TypeError: cmd is not a function
|
|
|
|
<TypeError />
|
|
|
|
---
|
|
|
|
## Errors when using VSCode or GitHub Codespaces
|
|
|
|
<ForwardingError />
|
|
|
|
---
|
|
|
|
## Invalid Token Error with --no-browser Option
|
|
|
|
<InvalidTokenError />
|
|
|
|
---
|
|
|
|
## Can't Connect to PostgreSQL Docker Container
|
|
|
|
<DockerSection />
|
|
|
|
---
|
|
|
|
## Can't connect to database with --db-url option
|
|
|
|
<DbUrlError />
|
|
|
|
---
|
|
|
|
## Other Errors
|
|
|
|
<OtherErrors /> |