Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/andikod/11ty3blanco
A simple, blank, 11ty3 starter with no over complications.
https://github.com/andikod/11ty3blanco
11ty eleventy esbuild sass starter tailwindcss
Last synced: 13 days ago
JSON representation
A simple, blank, 11ty3 starter with no over complications.
- Host: GitHub
- URL: https://github.com/andikod/11ty3blanco
- Owner: AndiKod
- Created: 2024-09-26T14:00:31.000Z (4 months ago)
- Default Branch: master
- Last Pushed: 2024-11-21T18:58:42.000Z (3 months ago)
- Last Synced: 2024-11-21T19:38:06.876Z (3 months ago)
- Topics: 11ty, eleventy, esbuild, sass, starter, tailwindcss
- Language: JavaScript
- Homepage: https://11ty3blanco.netlify.app
- Size: 30.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Blanco
A simple, Tailwind4 & VanillaCSS Eleventy starter with no over complexity.
---
You can use your favorite tool to install and run scripts,
NPM, PNPM, Deno, or here as an example using pnpm:```bash
pnpm i
```It will create the correspondant lock file.
That's why we didn't commity any for that minimal starter.Fire the dev server on localhost:8080
```bash
pnpm run dev
```To build the site:
```bash
pnpm run build
```This will generate the `_site` folder with the built site. CSS and JS will be minified.
## Make it yours
And remove the remote git repository from a terminal in the root.
```bash
rm -rf .git
# Eventually initiate a new git repository
git init
# ... then add your own remote.
```## Why?
Sometime you just need a clean start and build on top of it. This starter is a good choice if you want to start a new project from scratch without heavy opinionated setup, or need a little sandbox.
The folders structure follows the standard set by the official blog-starter, it use the automatic native light/dark native colorscheme via `meta color-scheme` and minify css & js on build.