You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Given that webpack is compiling all javascripts into bundle.js, is seems cleaner to start cleaning out the public folder to create a clean(er) separation between source and build artifacts.
Given that webpack is compiling all javascripts into bundle.js, is seems cleaner to start cleaning out the public folder to create a clean(er) separation between source and build artifacts.
Currently the public folder looks like this:
mike@longshot:~/projects/usesthis☺ tree public/ public/ ├── images │ ├── layers-2x.png │ ├── layers.png │ ├── marker-icon-2x.png │ ├── marker-icon.png │ └── marker-shadow.png ├── javascripts │ ├── bundle.js │ ├── bundle.js.map │ ├── components │ │ ├── canvas.js │ │ ├── FlashMessage.js │ │ ├── Layer.js │ │ ├── Map.js │ │ ├── Navigation.js │ │ └── SummaryChart.js │ ├── convert.js │ ├── main.js │ ├── mapbox-geocoder.js │ └── summary.js └── stylesheets ├── leaflet.css ├── mapbox-gl-geocoder.css └── style.css 4 directories, 20 files
Minimally it would be good to move all js source out of the javascripts directory and leave only bundle.js and bundle.js.map
The text was updated successfully, but these errors were encountered: