Hi I'm upgrading my chat assistant application which uses the static plugin to bun 1.3.3, the latest version of elsyia, replacing vite with the bun bundler.
The flow I want in our build process is, frontend builds static assets (bun build index.html --outdir dist), then that static dist folder gets used by the elysia backend with the static plugin.
The newer version of the static plugin is always using the default Bun loader for html so bun is trying to bundle an already bundled frontend application.
Is there a way around this?