A lightweight and fast React boilerplate using Rspack for bundling, TypeScript, and ESLint + Prettier for code quality.
- ⚡ Rspack - A blazing-fast alternative to Webpack
- 🏗️ TypeScript - Strongly typed JavaScript
- 📂 Path Aliases - Cleaner imports using
@/alias - 🎨 CSS Modules & Global CSS - Supports modular styles and global CSS imports
- 🔍 ESLint & Prettier - Code linting and formatting
- 🚀 SWC Compiler - Fast JavaScript/TypeScript transformation
- 🔄 Hot Module Replacement (HMR) - Faster development experience
- 🖼️ Asset Handling - Supports images and CSS
npm installnpm startThe app will be available at http://localhost:3000.
npm run buildThe output files will be generated in the dist/ folder.
Check for linting issues:
npm run lintAutomatically fix linting issues:
npm run lint:fix