vitto
v0.1.2
Published
A minimal static site generator built with Vite and the Vento templating engine.
Downloads
71
Maintainers
Readme
Vitto
A minimal static site generator built with Vite and the Vento templating engine.
Vitto combines the speed of Vite's development experience with the simplicity of Vento templates to create a modern static site generator. Perfect for documentation sites, blogs, portfolios, and any project that needs fast builds and flexible templating without the complexity of larger frameworks.
Get started quickly using create-vitto to scaffold your project.
Visit the project page for more detailed information.
Installation
# Install with pnpm
pnpm add -D vitto
# Install with npm
npm install --save-dev vitto
# Install with yarn
yarn add --dev vittoUsage
import { defineConfig } from 'vite'
import vitto from 'vitto'
export default defineConfig({
plugins: [
vitto({
minify: process.env.NODE_ENV === 'production',
enableSearchIndex: true,
metadata: {
siteName: 'Vitto',
title: 'Vitto - Static Site Generator Powered by Vite & Vento',
}
})
],
})License
Licensed under the MIT license.
Copyrights in this project are retained by their contributors.
See the LICENSE file for more information.
