Create Preact App
Create Preact apps with no build configuration.
This is fork of create-react-app that does the same, but uses Preact instead of React.
Quick Overview
You can use it with the same create-react-app
command as well as upstream repo. You just need to specify custom versions of react-scripts package:
npm install -g create-react-app
create-react-app my-app --scripts-version @just-boris/preact-scripts
cd my-app/
npm start
Then open http://localhost:3000/ to see your app.
When you’re ready to deploy to production, create a minified bundle with npm run build
.
Documentation
For the detailed information, please see the original repo. It contains all necessary information, this project doesn't have any differences.
Updates
This reposiory has automatic synchronization with upstream via Backstroke. Newer versions will be published whenever there will be new release in the original repo.