Back
Syntax
Study
Editor
Mode:
HTML
CSS
JavaScript
PHP
Reset
Run »
HTML / CSS / JS
// vite.config.js import { defineConfig } from "vite"; export default defineConfig({ build: { rollupOptions: { output: { manualChunks: { vendor: ["react", "react-dom"], }, }, }, }, }); // Use native ES modules in development: // Vite serves unbundled modules directly to the browser // — no slow rebuild step during development
Result
Open