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.
├── main.js Main JavaScript file.
├── package.json Project configuration and dependencies.
├── postcss.config.js PostCSS configuration file.
├── README.md Project documentation.
├── style.scss Main Sass file. Write your styles here.
├── tailwind.config.js Tailwind CSS configuration file.
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!