This is a simple boilerplate project for getting started with a web development project using Vanilla JavaScript and Tailwind CSS, powered by Vite.
git clone https://github.com/jhordyess/vanilla-tailwindcss-boilerplate.git
cd vanilla-tailwindcss-boilerplate
yarn
# With npm
npm install
yarn dev
# With npm
npm run dev
vanilla-tailwindcss-boilerplate/
├── .gitignore List of files and directories to be ignored by version control.
├── index.html Entry point HTML file.
├── package.json Project configuration and dependencies.
├── README.md Project documentation.
├── vite.config.js Vite configuration file.
├── src/
│ ├── main.js Main JavaScript file.
│ ├── style.css Main CSS file. Add Tailwind CSS setup here.
yarn dev
# With npm
npm run dev
yarn build
# With npm
npm run build
yarn preview
# With npm
npm run preview
Contributions are welcome! If you find any issues or want to enhance the project, feel free to submit a pull request.
Happy coding!