I have a file that I want available app wide, if the file is called app_wide.js normally I would do
import util from './app_wide.js'
However, I it is a small file and I want its exports available in all my files without the explicit import command. How can I go about doing this?
I'm using Webpack to build a React application.