Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Can I serve create-react-app assets from a relative path

Presently building my create-react-app build generates references to assets as absolute paths ie:

/static/js/main.12345.js

I want to serve from a variable subdirectory which could be:

/pre-prod or /prod

So setting "homepage" in package.json will not work as the homepage is dependent on the runtime environment.

I'd like to generate the asset references like so:

static/js/main.12345.js

And I'd prefer to do it without ejecting. Is that possible? I have looked at the docs and googled etc and do not see an answer.

like image 992
HelloWorld Avatar asked Jul 26 '18 22:07

HelloWorld


1 Answers

Have you tried setting the "homepage" in package.json to "."? That's what I do.

like image 124
Dave Cole Avatar answered Sep 30 '22 14:09

Dave Cole