You signed in with another tab or window.Reload to refresh your session.You signed out in another tab or window.Reload to refresh your session.You switched accounts on another tab or window.Reload to refresh your session.Dismiss alert
This will start the BrowserSync server and watch for CSS changes.
Scripts
watch:css: Watches for changes in thecss/style.css and rebuilds the CSS using Tailwind.
start: Starts the BrowserSync server and watches for CSS changes.
License
This project is licensed under the MIT License.
DOCS.md
uncodebar Microsite Documentation
Project Structure
<city>.html: The main entry point of the application.
css/: Contains the main stylesheetstyle.css which is processed by Tailwind CSS.
Development
CSS Building and Watching
The project uses Tailwind CSS for styling. Any changes made tocss/style.css will be automatically processed by Tailwind and the output will be saved tocss/output.css.
To watch for CSS changes, run:
npm run watch:css
Starting the Development Server
To start the BrowserSync server and watch for CSS changes concurrently, run:
npm run start
This will serve the site on a local server and automatically reload the browser upon changes to the HTML or CSS files.
Dependencies
tailwindcss: A utility-first CSS framework for rapid UI development.
browser-sync: Keeps multiple browsers & devices in sync when building websites.
concurrently: Run multiple commands concurrently.
nodemon: Monitor for any changes in your node.js application and automatically restart the server.