Preact
Create a Preact project based on Farm.
Farm provides two approaches to support creating Preact projects:
- Use the
create-farmscaffold to create a scaffold project - You can manually create a
Preactproject following the current documentation
Creating a Preact Project​
npm create farm@latest
Select Preact template in Select Framework
Preact
For Preact support, Farm recommends using Vite plugins.
farm.config.ts
import { defineConfig } from '@farmfe/core';
import Preact from "vite-plugin-preact";
export default defineConfig({
plugins: [Preact()],
});
If you want to start DevServer
npm dev
If you need to run the build production environment product command
npm build
If you need to preview your build product
npm preview
For more example details: Preact Example
