Create and build a base app for HTML/CSS with Parcel. Parcel is a zero configuration build tool for the web. It combines a great out-of-the-box development experience with a scalable architecture that can take your project from just getting started to massive production application. View more about Parcel.
Author: Cu Nguyen <[email protected]>
Deploy to Netlify: https://parcel-html-css.cunguyen.com/
- This help to guide those who are starting with HTML/CSS and has an overview of a base web structure
- Quick start with HTML/CSS with a build tool that supports hot reload, minimizes the code, transfers JavaScript, JSX, and TypeScript
├── .gitignore
├── package.json
├── yarn.lock
├── README.md
└── src
├── favicon.ico
└── assets
├── audios
├── videos
└── images
├── pages
├── index.html
└── 404.html
├── scripts
└── index.js
└── styles
└── main.css
Step by step to run this app in your local
At your directory root, run:
npm/yarn install
npm/yarn start
npm/yarn run build
- You can update the source structures to follow your patterns.
- Parcel v2 has supported the autoprefixer plugin without any config, in case you want to custom more oldest browsers, you can define it in the
package.json
(View document) - Live reload is supported on this repository
- Web default port is
http://localhost:1234
, you can custom it