1. 25 Aug, 2020 1 commit
  2. 24 Aug, 2020 2 commits
  3. 21 Aug, 2020 1 commit
  4. 20 Aug, 2020 2 commits
  5. 19 Aug, 2020 4 commits
  6. 18 Aug, 2020 10 commits
  7. 17 Aug, 2020 2 commits
  8. 14 Aug, 2020 1 commit
  9. 13 Aug, 2020 2 commits
  10. 12 Aug, 2020 7 commits
  11. 10 Aug, 2020 1 commit
  12. 07 Aug, 2020 2 commits
  13. 06 Aug, 2020 1 commit
  14. 05 Aug, 2020 3 commits
  15. 04 Aug, 2020 1 commit
    • Dorian Johnson's avatar
      build: use static CSS and JS filenames in dev (#534) · 82d843e9
      Dorian Johnson authored
      In production, it's helpful to use content addressing to guarantee cache busting
      when publishing changes.
      
      However, in development, because the server serves a static copy of the
      index.html, that means that changing the Javascript bundle or CSS requires an
      otherwise-unnecessary restart of the server.
      
      This change makes the CSS and JS assets use fixed filenames so that a server
      restart isn't needed.
      
      Downside of this approach is there's now a dev/prod disparity and the config is
      more spread out between files. The positive is we don't need to modify the
      semantics of the server at all.
      82d843e9