How to set PUBLIC_URL in create-react-app?
I use cross-env so that I'm goona set PUBLIC_URL like below.
"start": "cross-env NODE_ENV=dev PUBLIC_URL=http://localhost:8080 react-app-rewired start --scripts-version react-scripts-ts"
And console.log(process.env) show me the right result about NODE_ENV, dev. But PUBLIC_URL is just ' ' that default value.
how can i set PUBLIC_URL? I need two PUBLIC_URL for development and production environment.