class ViteRuby::DevServerProxy

def vite_entrypoint?(path)

Internal: We want to avoid checking the filesystem if possible
def vite_entrypoint?(path)
  path.include?('.') &&
    config.resolved_entrypoints_dir.join(path.delete_prefix('/')).file?
end