christopherdarling/silverstripe-theme-manifest-assets

Loads theme assets from a JSON manifest produced from a build tool like Webpack

3.0.0 2019-04-15 05:58 UTC

This package is auto-updated.

Last update: 2024-03-15 16:48:13 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">