Tauri
Create a Tauri project based on Farm.
Farm provides two approaches to support creating Tauri projects:
- Use the create-farmscaffold to create a scaffold project
- You can manually create a Tauriproject following the current documentation
Creating a Tauri Project​
npm create farm@latest
Select Tauri template in Select Framework
- 
project name 
- 
choose sub template 
In your terminal, cd into the new Tauri project folder.
Update the file with the following content:
import { defineConfig } from '@farmfe/core';
export default defineConfig({
  plugins: ['@farmfe/plugin-react'],
  server: {
    port: 1420
  }
});
then run pnpm tauri dev
For more example details: React Example
