mukan-ignite/docs/versioned_docs/version-v0.25/kb/07-frontend.md
Mukan Erkin Törük 26b204bd04
Some checks are pending
Docs Deploy / build_and_deploy (push) Waiting to run
Generate Docs / cli (push) Waiting to run
Generate Config Doc / cli (push) Waiting to run
Go formatting / go-formatting (push) Waiting to run
Check links / markdown-link-check (push) Waiting to run
Integration / pre-test (push) Waiting to run
Integration / test on (push) Blocked by required conditions
Integration / status (push) Blocked by required conditions
Lint / Lint Go code (push) Waiting to run
Test / test (ubuntu-latest) (push) Waiting to run
feat: fork Ignite CLI v29 as Mukan Ignite — remove cosmos-sdk restrictions
2026-05-11 03:31:37 +03:00

1.6 KiB

description sidebar_position
Details on the Vue frontend app created by Ignite CLI. 7

Frontend overview

A Vue frontend app is created in the vue directory when a blockchain is scaffolded. To start the frontend app run npm i && npm run dev in the vue directory.

The frontend app is built using the @starport/vue and @starport/vuex packages. For details, see the monorepo for Ignite CLI front-end development.

Client code generation

A TypeScript (TS) client and associated Vuex stores are automatically generated for your blockchain for custom and standard Cosmos SDK modules.

To enable client code generation, add the client entries to config.yml:

client:
  typescript:
    path: "ts-client"
  vuex:
    path: "vue/src/store"

A TS client is generated in the ts-client directory (see: TypeScript client information) and Vuex store modules making use of this client are generated in the vue/src/store directory.

Client code regeneration

By default, the filesystem is watched and the clients are regenerated automatically. Clients for standard Cosmos SDK modules are generated after you scaffold a blockchain.

To regenerate all clients for custom and standard Cosmos SDK modules, run this command:

ignite generate vuex

(Note: this command also runs the typescript client generation and you do not need to run ignite generate ts-client separately.)

Preventing client code regeneration

To prevent regenerating the client, remove the client:vuex property from config.yml.