### Install PhoenixVite with Igniter Source: https://github.com/lostkobrakai/phoenix_vite/blob/main/README.md Use the igniter command for fresh or existing projects. The --bun flag is optional. ```shell mix igniter.new my_app --with phx.new --install phoenix_vite [--bun] ``` ```shell mix igniter.install phoenix_vite [--bun] ``` -------------------------------- ### Manually Install PhoenixVite Source: https://github.com/lostkobrakai/phoenix_vite/blob/main/README.md Run the mix phoenix_vite.install command after adding the dependency. The --bun flag is optional. ```shell mix phoenix_vite.install [--bun] ``` -------------------------------- ### Add PhoenixVite to mix.exs Dependencies Source: https://github.com/lostkobrakai/phoenix_vite/blob/main/README.md Manually add the phoenix_vite package to your project's dependencies in mix.exs. ```elixir def deps do [ {:phoenix_vite, "~> 0.3.0"} ] end ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.