diff --git a/config/assets.php b/config/assets.php new file mode 100644 index 0000000..54d5ffd --- /dev/null +++ b/config/assets.php @@ -0,0 +1,40 @@ + 'theme', + + /* + |-------------------------------------------------------------------------- + | Assets Manifests + |-------------------------------------------------------------------------- + | + | Manifests contain lists of assets that are referenced by static keys that + | point to dynamic locations, such as a cache-busted location. We currently + | support two types of manifest: + | + | assets: key-value pairs to match assets to their revved counterparts + | + | bundles: a series of entrypoints for loading bundles + | + */ + + 'manifests' => [ + 'theme' => [ + 'path' => get_theme_file_path('public'), + 'url' => get_theme_file_uri('public'), + 'bundles' => get_theme_file_path('public/build/manifest.json'), + ], + ], +];