UNPKG

@roots/bud-client

Version:

Client scripts for @roots/bud

17 lines (14 loc) 285 B
/* eslint-disable no-console */ /* global __resourceQuery */ /* global module */ import {client} from './client.js' /** * Client entrypoint */ ;(async function () { try { await client(__resourceQuery, import.meta.webpackHot) } catch (err) { console.error(err) } })()