Getting Started
Using tool
You can create prext application easily with create-prext.
- Download Template
bash
$ npx create-prextbash
$ yarn create prext- Install Dependencies
bash
$ npm installbash
$ yarn- Run!
bash
$ npm dev # start appbash
$ npm dev # start appManual Installation
You can also add prext to a project that already exists.
Enter the command below:
bash
$ npm install --save-dev prextbash
$ yarn add -D prextAdd the configuration file (prext.config.ts).
ts
import { defineConfig } from 'prext/config';
export default defineConfig({
// options
});