I am currently developing a chrome extension using vue cli 3 and have successfully implemented the basics. However, I would like to streamline my file structure by including my content and background javascript files in the build process instead of manually moving them to the dist folder. This will also allow me to use import/export functions effectively.
I managed to add these files as new "pages" in the vue config, and they are being built and placed in the dist folder without any issues, even without the html template file.
The challenge arises when the cache busting string is appended to their filenames, making it difficult for me to reference them in the extension manifest. For instance, 'background.js' becomes 'background.d8f9c902.js'.
Is there a way to configure the vue config to exclude certain "pages" from receiving the cache busting treatment? Unfortunately, the documentation doesn't provide any information on this specific parameter.
Thank you in advance!