Skip to content
Snippets Groups Projects
  1. Feb 28, 2023
  2. Feb 27, 2023
  3. Jan 24, 2023
  4. Dec 11, 2022
  5. Dec 07, 2022
  6. Dec 06, 2022
    • Konrad Mohrfeldt's avatar
      chore: remove unused code · c98b5fa0
      Konrad Mohrfeldt authored
      c98b5fa0
    • Konrad Mohrfeldt's avatar
      feat: use pages as bundle split-points · 2516625c
      Konrad Mohrfeldt authored
      Up until now the application was crammed in a single JavaScript file
      once bundled. This forces clients to download 1.1MiB of JavaScript all
      at once.
      
      Vite uses dynamic import statements as split-points for bundles. By
      using dynamic imports for our routes we can delay the loading of some
      data to a later point in time when the user actually needs it. We should
      still try to reduce our overall bundle size.
      2516625c
Loading