Start a simple static site with components.
Note: This is an opinionated basic template to save some time for future projects.
- ✨️ Zero-config bundler for HTML/SCSS/JS using Parcel.
- 🔥 Hot Module Reloading
- 😎️ Supports ES6 out of the box.
- 🧱️ Render simple HTML components.
- 💯️ Render inline SVGs from files using a special
<icon>
element. - 📸️ Automatic image optimization.
- 🚀️ Images are converted to WEBP for better performance with
<img>
elements transformed into<picture>
elements that display WEBP in supported browsers and fallback to original image. - 🕵️ Obfuscate
mailto
links to prevent scraper spam. - 🔁️ Easily repeat blocks for prototyping.
- 🔒️ Automatically add
noopener noreferrer
to links to prevent this vulnerability.
Deploy to Netlify & fork to a new repo 👉️ |
---|
- Install required packages with
yarn install
- Start your local development server with
yarn start
Run yarn build
to create an optimized production build in /dist
which can be deployed as a website.
- Automatically set
loading="lazy"
for image elements.