Should I include large files in PWA build for offline capability?











up vote
1
down vote

favorite
1












I am developing a PWA with Vue 3 CLI that grabs some of it's content from a seperate CMS/API. The application is a touchscreen game and a primary use case is running without an internet connection, although the user environment is controlled and the game can be updated with latest updates sync'd and cached via ServiceWorkers when required.



When I build my app, Webpack performance recommendations warn of assets larger than the recommended size limit; in this case an intro video (25MB) and some font files (300kB each).



Should I be serving the video and fonts (and other large files) from the CMS/API and keeping my Vue app build as small as possible, bearing in mind the offline functionality being important? Or is there a good reason to package the fonts and video in the Vue JS build output?



This is my first PWA, so am just looking for confirmation whether to follow the Webpack guidelines in this case, given the app functioning properly offline is a priority?










share|improve this question


























    up vote
    1
    down vote

    favorite
    1












    I am developing a PWA with Vue 3 CLI that grabs some of it's content from a seperate CMS/API. The application is a touchscreen game and a primary use case is running without an internet connection, although the user environment is controlled and the game can be updated with latest updates sync'd and cached via ServiceWorkers when required.



    When I build my app, Webpack performance recommendations warn of assets larger than the recommended size limit; in this case an intro video (25MB) and some font files (300kB each).



    Should I be serving the video and fonts (and other large files) from the CMS/API and keeping my Vue app build as small as possible, bearing in mind the offline functionality being important? Or is there a good reason to package the fonts and video in the Vue JS build output?



    This is my first PWA, so am just looking for confirmation whether to follow the Webpack guidelines in this case, given the app functioning properly offline is a priority?










    share|improve this question
























      up vote
      1
      down vote

      favorite
      1









      up vote
      1
      down vote

      favorite
      1






      1





      I am developing a PWA with Vue 3 CLI that grabs some of it's content from a seperate CMS/API. The application is a touchscreen game and a primary use case is running without an internet connection, although the user environment is controlled and the game can be updated with latest updates sync'd and cached via ServiceWorkers when required.



      When I build my app, Webpack performance recommendations warn of assets larger than the recommended size limit; in this case an intro video (25MB) and some font files (300kB each).



      Should I be serving the video and fonts (and other large files) from the CMS/API and keeping my Vue app build as small as possible, bearing in mind the offline functionality being important? Or is there a good reason to package the fonts and video in the Vue JS build output?



      This is my first PWA, so am just looking for confirmation whether to follow the Webpack guidelines in this case, given the app functioning properly offline is a priority?










      share|improve this question













      I am developing a PWA with Vue 3 CLI that grabs some of it's content from a seperate CMS/API. The application is a touchscreen game and a primary use case is running without an internet connection, although the user environment is controlled and the game can be updated with latest updates sync'd and cached via ServiceWorkers when required.



      When I build my app, Webpack performance recommendations warn of assets larger than the recommended size limit; in this case an intro video (25MB) and some font files (300kB each).



      Should I be serving the video and fonts (and other large files) from the CMS/API and keeping my Vue app build as small as possible, bearing in mind the offline functionality being important? Or is there a good reason to package the fonts and video in the Vue JS build output?



      This is my first PWA, so am just looking for confirmation whether to follow the Webpack guidelines in this case, given the app functioning properly offline is a priority?







      vue.js webpack service-worker progressive-web-apps offline-caching






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Nov 20 at 11:40









      Rhecil Codes

      102113




      102113
























          2 Answers
          2






          active

          oldest

          votes

















          up vote
          0
          down vote













          There is a limit you can store depending on your browser How Much Can You Store



          Me personally i would not recommend to store such large video files. If it is not absolute needed for your users offline experience.






          share|improve this answer




























            up vote
            0
            down vote













            If the video is not mandatory to play the game, I would not cache it by default, but give the user the opportunity to do it if she wants.



            Some players might have low quota data plans and want to not show the video.



            The fonts look like a good asset to put in cache.






            share|improve this answer





















              Your Answer






              StackExchange.ifUsing("editor", function () {
              StackExchange.using("externalEditor", function () {
              StackExchange.using("snippets", function () {
              StackExchange.snippets.init();
              });
              });
              }, "code-snippets");

              StackExchange.ready(function() {
              var channelOptions = {
              tags: "".split(" "),
              id: "1"
              };
              initTagRenderer("".split(" "), "".split(" "), channelOptions);

              StackExchange.using("externalEditor", function() {
              // Have to fire editor after snippets, if snippets enabled
              if (StackExchange.settings.snippets.snippetsEnabled) {
              StackExchange.using("snippets", function() {
              createEditor();
              });
              }
              else {
              createEditor();
              }
              });

              function createEditor() {
              StackExchange.prepareEditor({
              heartbeatType: 'answer',
              convertImagesToLinks: true,
              noModals: true,
              showLowRepImageUploadWarning: true,
              reputationToPostImages: 10,
              bindNavPrevention: true,
              postfix: "",
              imageUploader: {
              brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
              contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
              allowUrls: true
              },
              onDemand: true,
              discardSelector: ".discard-answer"
              ,immediatelyShowMarkdownHelp:true
              });


              }
              });














              draft saved

              draft discarded


















              StackExchange.ready(
              function () {
              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392238%2fshould-i-include-large-files-in-pwa-build-for-offline-capability%23new-answer', 'question_page');
              }
              );

              Post as a guest















              Required, but never shown

























              2 Answers
              2






              active

              oldest

              votes








              2 Answers
              2






              active

              oldest

              votes









              active

              oldest

              votes






              active

              oldest

              votes








              up vote
              0
              down vote













              There is a limit you can store depending on your browser How Much Can You Store



              Me personally i would not recommend to store such large video files. If it is not absolute needed for your users offline experience.






              share|improve this answer

























                up vote
                0
                down vote













                There is a limit you can store depending on your browser How Much Can You Store



                Me personally i would not recommend to store such large video files. If it is not absolute needed for your users offline experience.






                share|improve this answer























                  up vote
                  0
                  down vote










                  up vote
                  0
                  down vote









                  There is a limit you can store depending on your browser How Much Can You Store



                  Me personally i would not recommend to store such large video files. If it is not absolute needed for your users offline experience.






                  share|improve this answer












                  There is a limit you can store depending on your browser How Much Can You Store



                  Me personally i would not recommend to store such large video files. If it is not absolute needed for your users offline experience.







                  share|improve this answer












                  share|improve this answer



                  share|improve this answer










                  answered Nov 20 at 12:00









                  André Kelling

                  185110




                  185110
























                      up vote
                      0
                      down vote













                      If the video is not mandatory to play the game, I would not cache it by default, but give the user the opportunity to do it if she wants.



                      Some players might have low quota data plans and want to not show the video.



                      The fonts look like a good asset to put in cache.






                      share|improve this answer

























                        up vote
                        0
                        down vote













                        If the video is not mandatory to play the game, I would not cache it by default, but give the user the opportunity to do it if she wants.



                        Some players might have low quota data plans and want to not show the video.



                        The fonts look like a good asset to put in cache.






                        share|improve this answer























                          up vote
                          0
                          down vote










                          up vote
                          0
                          down vote









                          If the video is not mandatory to play the game, I would not cache it by default, but give the user the opportunity to do it if she wants.



                          Some players might have low quota data plans and want to not show the video.



                          The fonts look like a good asset to put in cache.






                          share|improve this answer












                          If the video is not mandatory to play the game, I would not cache it by default, but give the user the opportunity to do it if she wants.



                          Some players might have low quota data plans and want to not show the video.



                          The fonts look like a good asset to put in cache.







                          share|improve this answer












                          share|improve this answer



                          share|improve this answer










                          answered Nov 26 at 17:16









                          Nicolas Hoizey

                          1,1161019




                          1,1161019






























                              draft saved

                              draft discarded




















































                              Thanks for contributing an answer to Stack Overflow!


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.





                              Some of your past answers have not been well-received, and you're in danger of being blocked from answering.


                              Please pay close attention to the following guidance:


                              • Please be sure to answer the question. Provide details and share your research!

                              But avoid



                              • Asking for help, clarification, or responding to other answers.

                              • Making statements based on opinion; back them up with references or personal experience.


                              To learn more, see our tips on writing great answers.




                              draft saved


                              draft discarded














                              StackExchange.ready(
                              function () {
                              StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f53392238%2fshould-i-include-large-files-in-pwa-build-for-offline-capability%23new-answer', 'question_page');
                              }
                              );

                              Post as a guest















                              Required, but never shown





















































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown

































                              Required, but never shown














                              Required, but never shown












                              Required, but never shown







                              Required, but never shown







                              Popular posts from this blog

                              Wiesbaden

                              Marschland

                              Dieringhausen