A modern React application bundled with Webpack, featuring custom configuration for optimized development and production builds.
- ⚛️ React
- 🔧 Webpack
- 🎨 Material UI (MUI)
- 💅 TailwindCSS
- 📜 Babel
- 🧼 ESLint
- 🛠️ Other tooling: React Router, custom hooks, etc.
git clone https://github.com/ashutoshgarg1988/adminpanel.git
npm install
{ "presets": [ "@babel/preset-env", ["@babel/preset-react", { "runtime": "automatic" }] ] }
npm run start This starts the webpack dev server at http://localhost:3000
npm run build Outputs optimized files in the /dist directory.
├── public/ # Static assets and HTML template ├── src/ │ ├── components/ # Reusable components │ ├── constants/ # project constanst variable decalariton │ ├── pages/ # Goute-based page components │ ├── store/ # Context/custom hooks for managing global state │ ├── utils/ # custom utility functions │ ├── App.jsx # Main app wrapper │ └── index.jsx # ReactDOM entry point ├── .babelrc ├── webpack.config.js ├── postcss.config.js ├── tailwind.config.js ├── package.json └── README.md
Ashutosh Garg