Monday, May 20, 2024
 Popular · Latest · Hot · Upcoming
48
rated 0 times [  52] [ 4]  / answers: 1 / hits: 96523  / 6 Years ago, fri, october 26, 2018, 12:00:00

Basically I made a (relatively) simple app for a client. The app works and all but they keep asking for changes to the data.



Given the originally anticipated simplicity of the app and the fact it held static data, i did not link it to any back end.ll the data lives in a local static file with an object holding the data.



The problem is that fle gets bundled into the buld, so if i want to just change some static data without having to rbuild, i can't!



I have assets that my data file can access inside the public folder, and those are working fine. I was trying to achieve the same idea with a js file.



I canot import from outside the /src folder.



Is there a way i can access static data from the static folder that gets added on build somehow?


More From » reactjs

 Answers
45

Yes, you can place assets in the static folder.



Docs: Using the Public Folder




  • You can reference the path in index.html with %PUBLIC_URL%/path/resource.

  • You can use process.env.PUBLIC_URL + '/path/resource' in javascript code.



Both of these approaches are replaced at build time for your final build.



If these are javascript assets, the build will not be aware of them. You need to structure it as an external javascript library and store them in a global variable that you can reference within your code. Then you can load that javascript library in your index.html


[#53240] Wednesday, October 24, 2018, 6 Years  [reply] [flag answer]
Only authorized users can answer the question. Please sign in first, or register a free account.
alenaautump

Total Points: 87
Total Questions: 109
Total Answers: 109

Location: Libya
Member since Mon, Dec 7, 2020
4 Years ago
;