We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
1. Support multiple JS CDNs:
Allow user to set preferred CDN in site.yml:
site.yml
2. Bundle the NPM deps defined in site.yml as a single JS file:
Reduce network requests, while keeping things cache-able, by bundling the main site JS deps as a single file at build time:
curl
assets/js/site.js
If a page has its own, separate list of deps, bundle them into a separate file:
assets/js/${page_slug}.js
The text was updated successfully, but these errors were encountered:
No branches or pull requests
1. Support multiple JS CDNs:
Allow user to set preferred CDN in
site.yml
:2. Bundle the NPM deps defined in
site.yml
as a single JS file:Reduce network requests, while keeping things cache-able, by bundling the main site JS deps as a single file at build time:
curl
at build time to grab the JS, put it intoassets/js/site.js
If a page has its own, separate list of deps, bundle them into a separate file:
curl
at build time to grab the JS, put it intoassets/js/${page_slug}.js
The text was updated successfully, but these errors were encountered: