From 0656c7ba68d9ad974529be328a52d667dce6948d Mon Sep 17 00:00:00 2001 From: Ben Word Date: Thu, 6 Feb 2025 11:56:39 -0500 Subject: [PATCH] brb This reverts commit 8d81e1ba3e0cae5cbc8901928e360e7934c01877. --- config/assets.php | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) create mode 100644 config/assets.php 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'), + ], + ], +];