1. 02 12月, 2020 1 次提交
  2. 25 11月, 2020 1 次提交
  3. 24 11月, 2020 2 次提交
  4. 23 11月, 2020 1 次提交
  5. 22 11月, 2020 1 次提交
  6. 21 11月, 2020 4 次提交
  7. 20 11月, 2020 2 次提交
  8. 19 11月, 2020 1 次提交
    • J
      Remove old modern mode experiment (#19275) · 30c2dfdc
      Joe Haddad 提交于
      This PR removes the modern mode experiment because:
      
      - It does not yield meaningful bundle size wins when compared to other initiatives we've taken
      - It's not compatible with webpack 5 (which we're upgrading to)
      - It's currently broken and causes most apps to malfunction
      - There's no champion currently owning the experiment
      
      We can re-introduce this in the future when we'd like to make it a default for all Next.js apps.
      
      Note: **Next.js still supports Differential Loading (`nomodule`) and does it by default.** This PR strictly removes the experimental modern _syntax_, and does not disable our existing modern/legacy polyfilling.
      
      ---
      
      Fixes #19200
      Fixes #18960
      Fixes #14707
      Fixes #14465
      30c2dfdc
  9. 18 11月, 2020 3 次提交
  10. 16 11月, 2020 1 次提交
  11. 14 11月, 2020 4 次提交
  12. 13 11月, 2020 6 次提交
  13. 12 11月, 2020 5 次提交
  14. 11 11月, 2020 5 次提交
  15. 10 11月, 2020 1 次提交
    • S
      Add etag header to optimized image response (#18986) · 95734265
      Steven 提交于
      Fixes #18563 by adding the etag header to the optimized image response.
      
      This does _not_ change the expireAt (TTL) for cached files on the server, which still uses the max-age of the upstream response.
      
      The new file format on disk for cached image files is the following:
      
      ```
      .next/cache/images/<HASHED_QUERYSTRING>/<EXPIREAT>.<ETAG>.<EXT>
      ```
      95734265
  16. 09 11月, 2020 2 次提交