An open API service indexing awesome lists of open source software.

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.

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).