https://github.com/shsharkar/strong-password-generator
Generate robust, random passwords to fortify your online security. Don't be a victim of cyber attacks.
https://github.com/shsharkar/strong-password-generator
Last synced: about 7 hours ago
JSON representation
Generate robust, random passwords to fortify your online security. Don't be a victim of cyber attacks.
- Host: GitHub
- URL: https://github.com/shsharkar/strong-password-generator
- Owner: SHSharkar
- Created: 2023-08-22T11:01:35.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-12-15T17:55:17.000Z (10 months ago)
- Last Synced: 2025-09-08T23:17:39.365Z (27 days ago)
- Language: HTML
- Size: 823 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tailwind CSS Setup
## Compiling Tailwind CSS Assets
To compile the Tailwind CSS assets in your project, run the following command:
```bash
npx tailwindcss -i ./src/main.css -o ./dist/main.css --minify
```This will take the `main.css` file located in the `src` directory, process it with Tailwind CSS, and output the minified result to the `dist` directory.
## Watching for Changes in Real-Time
If you want to make changes to your Tailwind CSS files and see the results in real-time during local development, run the following command:
```bash
npx tailwindcss -i ./src/main.css -o ./dist/main.css --watch
```This command will watch for any changes in the `main.css` file and recompile the output file automatically whenever a change is detected.
## Prerequisites
Ensure that you have Node.js and npm installed on your machine. You can install Tailwind CSS via npm if you haven't done so already:
```bash
npm install
```For more information, refer to the [Tailwind CSS documentation](https://tailwindcss.com/docs/installation).