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
Description The JsonManifestVersionStrategy requires the manifest.json to be a local file. That is checked with file_exists.
JsonManifestVersionStrategy
manifest.json
file_exists
I would like to download a manifest over HTTP from a remote service that exposes assets.
Cache-Control: immutable
Example
Existing:
framework: assets: json_manifest_path: '%kernel.project_dir%/public/build/manifest.json'
Expected:
framework: assets: json_manifest_url: 'https://cdn.example.com/manifest.json'
Implementation:
**VersionStrategy
stale-while-revalidate
stale-if-error
The text was updated successfully, but these errors were encountered:
Might be a duplicate of #33001
Sorry, something went wrong.
0647508
Successfully merging a pull request may close this issue.
Description
The
JsonManifestVersionStrategy
requires themanifest.json
to be a local file. That is checked withfile_exists
.I would like to download a manifest over HTTP from a remote service that exposes assets.
Cache-Control: immutable
) to get the best browser performances (i.e. a high score in Google Page Speed).Example
Existing:
Expected:
Implementation:
**VersionStrategy
.stale-while-revalidate
andstale-if-error
will be recommended.The text was updated successfully, but these errors were encountered: