I have a URL as
"http://localhost:8000/api/branding/news/";
I want, domain Part to put inside a Constant like
export const DOMAIN = "http://localhost:8000/";
Now I'm adding this constant inside the URL
{ DOMAIN } + "api/branding/news/";
but, this isn't working... how to fix this?
You use DOMAIN like this:
DOMAIN + "api/branding/news/"
But even better you can use template string:
`${DOMAIN}api/branding/news/`