class ViteRuby::Manifest

def load_manifest

Internal: Loads and merges the manifest files, resolving the asset paths.
def load_manifest
  config.manifest_paths
    .map { |path| JSON.parse(path.read) }
    .inject({}, &:merge)
    .tap { |manifest| resolve_references(manifest) }
end