christopherdarling / silverstripe-theme-manifest-assets
Loads theme assets from a JSON manifest produced from a build tool like Webpack
Installs: 77
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 1
Forks: 1
Open Issues: 0
Type:silverstripe-vendormodule
Requires
This package is auto-updated.
Last update: 2025-03-15 19:25:39 UTC
README
loads a JSON manifest file (default: themes/default/mainifest.json), looks up a given path and outputs the hashed filename
Example
Folder structure
dist/
- assets.js
- manifest.json
manifest.json
{
'img/logo.png': 'img/logo_HASH.png'
}
.ss template
<img src="{$ThemeManifestAsset(img/logo.png)}" alt="Logo">
Will output
<img src="themes/default/dist/img/logo_HASH.png" alt="Logo">