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.
npm install -D @nette/vite-plugin
Add the plugin to your vite.config.js
:
import { defineConfig } from 'vite'
import nette from '@nette/vite-plugin'
export default defineConfig({
plugins: [nette()]
})