Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chunks injected by webpack-html-plugin still using the static public path #94

Open
latel opened this issue Jun 2, 2022 · 0 comments
Open

Comments

@latel
Copy link

latel commented Jun 2, 2022

webpack.config.js

config.plugin('dynamicPublicPath').use(WebpackRequireFrom, [{ methodName: 'getExternalPublicPath' }]);

src/index.html

<script>
            window.getExternalPublicPath = function() {
                return (
                    /acpoint=local/.test(location.search) ? '//' + location.hostname : '//demo.publicpath.com'
                );
            };
        </script>

dist/index.html

<noscript
            ><strong
                >We're sorry but doesn't work properly without JavaScript enabled. Please enable it to continue.</strong
            ></noscript
        >
        <div id="app"><p style="color:#fff;">fcp</p></div>
        <script
            type="text/javascript"
            src="//demo.publicpath.com/js/chunk-vendors.b0ed90a9.js"
            crossorigin="anonymous"
        ></script>
        <script
            type="text/javascript"
            src="//demo.publicpath.com/js/index.f38b7301.js"
            crossorigin="anonymous"
        ></script>
        <script
            type="text/javascript"
            src="//demo.publicpath.com/js/vue-common-vendor.2e48dc40.js"
            crossorigin="anonymous"
        ></script>

any ideas to replace the public path of injected chunks at runtime?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant