https://github.com/dilums/html-css-boilerplate
A simple webpack-based boilerplate for quickly setting up HTML and SCSS projects with hot reloading.
https://github.com/dilums/html-css-boilerplate
Last synced: 5 months ago
JSON representation
A simple webpack-based boilerplate for quickly setting up HTML and SCSS projects with hot reloading.
- Host: GitHub
- URL: https://github.com/dilums/html-css-boilerplate
- Owner: dilums
- License: mit
- Created: 2023-05-02T06:01:10.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-05-02T06:05:00.000Z (almost 2 years ago)
- Last Synced: 2024-08-08T14:51:41.936Z (8 months ago)
- Language: JavaScript
- Size: 47.9 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - dilums/html-css-boilerplate - A simple webpack-based boilerplate for quickly setting up HTML and SCSS projects with hot reloading. (JavaScript)
README
# HTML & CSS Boilerplate
A simple webpack-based boilerplate for quickly setting up HTML and SCSS projects with hot reloading. Perfect for basic HTML/CSS testing, prototypes, and small projects.
## Features
- Webpack for bundling
- SCSS support
- Hot reloading with webpack-dev-server
- Basic HTML template included## Getting Started
1. Clone the repo:
```bash
git clone https://github.com/dilums/html-css-boilerplate.git
```
2. Navigate to the project directory and install dependencies:```bash
cd html-css-boilerplate
npm install
```3. Start the development server with hot reloading:
```bash
npm start
```The development server will open your default browser, and you can start working on your project. Any changes made to the HTML or SCSS files will automatically trigger a refresh.
4. To build your project for production, run:
```bash
npm run build
```The production-ready files will be generated in the `dist` folder.