npm create pyloid-appbun create pyloid-appyarn create pyloid-apppnpm create pyloid-app- Add Package Manager
- Add Framework
templates/framework/{framework}/{language}/
-
delete .gitignore
-
add devDependencies
"devDependencies": {
...
"run-script-os": "^1.1.6",
"npm-run-all": "^4.1.5"
}- update vite.config.js
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
// https://vite.dev/config/
export default defineConfig({
base: './',
plugins: [react()],
build: {
outDir: 'build-front',
},
});-
add pyloid_icon.png
-
update App.tsx