Skip to content
On this page

Getting Started

Using tool

You can create prext application easily with create-prext.


  1. Download Template
bash
$ npx create-prext
bash
$ yarn create prext
  1. Install Dependencies
bash
$ npm install
bash
$ yarn
  1. Run!
bash
$ npm dev # start app
bash
$ npm dev # start app

Manual Installation

You can also add prext to a project that already exists.

Enter the command below:

bash
$ npm install --save-dev prext
bash
$ yarn add -D prext

Add the configuration file (prext.config.ts).

ts
import { defineConfig } from 'prext/config';

export default defineConfig({
  // options
});