Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 597 Bytes

File metadata and controls

24 lines (16 loc) · 597 Bytes

Vite Plugin for Nette

A Vite plugin that integrates Vite with Nette & Latte for seamless asset management and development workflow.

For detailed setup instructions and configuration options, see the official Nette documentation.

Installation

npm install -D @nette/vite-plugin

Usage

Add the plugin to your vite.config.js:

import { defineConfig } from 'vite'
import nette from '@nette/vite-plugin'

export default defineConfig({
	plugins: [nette()]
})