Getting Started
Using tool
You can create prext application easily with create-prext.
- Download Template
bash
$ npx create-prext
bash
$ yarn create prext
- Install Dependencies
bash
$ npm install
bash
$ yarn
- 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
});