webpack-encore icon indicating copy to clipboard operation
webpack-encore copied to clipboard

How to load encore compiled js files in third party app

Open maciejregula opened this issue 1 month ago • 0 comments

Hi,

I have application where some js files need to be loaded by third party app so there is no "encore_entry_script_tags" function to load js files. I have two entrypoints in my encore configuration:

    builds:
        admin: '%kernel.project_dir%/public/admin/build'
        front: '%kernel.project_dir%/public/front/build'

My admin app (REACT + SYMFONY) uses the admin build so I can load my js builds via "encore_entry_script_tags". However, the front build should be loaded by a third-party application and there is not possible to use "encore_entry_script_tags". Is it possible to keep encore build in one js file with specific given name so it can be easily loaded via regular <script type="text/javascript" src"" /> ?

maciejregula avatar Jun 28 '24 14:06 maciejregula