├── .gitignore
├── test-project
├── src
│ ├── App.css
│ ├── index.css
│ ├── main.jsx
│ ├── App.jsx
│ ├── assets
│ │ └── react.svg
│ └── Home
│ │ └── Home.jsx
├── postcss.config.js
├── vite.config.js
├── tailwind.config.js
├── .gitignore
├── index.html
├── README.md
├── package.json
├── eslint.config.js
└── public
│ └── vite.svg
├── package.json
├── LICENSE
├── .github
└── workflows
│ └── publish.yml
├── SECURITY.md
├── README.md
└── index.js
/.gitignore:
--------------------------------------------------------------------------------
1 | node_modules
2 | .env
3 | dist
4 | .DS_Store
5 |
--------------------------------------------------------------------------------
/test-project/src/App.css:
--------------------------------------------------------------------------------
1 |
2 | *::-webkit-scrollbar {
3 | display: none;
4 | }
5 |
--------------------------------------------------------------------------------
/test-project/postcss.config.js:
--------------------------------------------------------------------------------
1 | export default {
2 | plugins: {
3 | tailwindcss: {},
4 | autoprefixer: {},
5 | },
6 | }
7 |
--------------------------------------------------------------------------------
/test-project/src/index.css:
--------------------------------------------------------------------------------
1 |
2 | @tailwind base;
3 | @tailwind components;
4 | @tailwind utilities;
5 |
6 | *::-webkit-scrollbar {
7 | display: none;
8 | }
9 |
10 |
--------------------------------------------------------------------------------
/test-project/vite.config.js:
--------------------------------------------------------------------------------
1 | import { defineConfig } from 'vite'
2 | import react from '@vitejs/plugin-react'
3 |
4 | // https://vite.dev/config/
5 | export default defineConfig({
6 | plugins: [react()],
7 | })
8 |
--------------------------------------------------------------------------------
/test-project/src/main.jsx:
--------------------------------------------------------------------------------
1 |
2 | import React from 'react';
3 | import ReactDOM from 'react-dom/client';
4 | import './index.css';
5 | import App from './App';
6 |
7 | ReactDOM.createRoot(document.getElementById('root')).render(
8 |
53 | The react vite.js Startup Boilerplate for busy developers,
54 |
55 | with{" "}
56 |
57 | all you need
58 | {" "}
59 | to build and launch your app soon.
60 |
88 |
157 |
158 | Anas Yakubu
159 |
160 |
161 |
123 | The react vite.js Startup Boilerplate for busy developers,
124 |
125 | with{" "}
126 |
127 | all you need
128 | {" "}
129 | to build and launch your app soon.
130 |
158 |
227 |
228 | Anas Yakubu
229 |
230 |
231 |