Skip to content

Instantly share code, notes, and snippets.

@kevinfjbecker
Created February 13, 2025 12:58
Show Gist options
  • Save kevinfjbecker/8f5c89a1a94d5e298b924c8b180e72d3 to your computer and use it in GitHub Desktop.
Save kevinfjbecker/8f5c89a1a94d5e298b924c8b180e72d3 to your computer and use it in GitHub Desktop.
Vite Config (kevinfjbecker)
import restart from 'vite-plugin-restart'
export default {
root: 'src/', // Sources files (typically where index.html is)
publicDir: '../static/', // Path from "root" to static assets (files that are served as they are)
base: './', // links relative to the current directory (needed for repository GitHub Pages)
server:
{
host: true, // Open to local network and display URL
open: !('SANDBOX_URL' in process.env || 'CODESANDBOX_HOST' in process.env) // Open if it's not a CodeSandbox
},
build:
{
outDir: '../dist', // Output in the dist/ folder
emptyOutDir: true, // Empty the folder first
sourcemap: true // Add sourcemap
},
plugins:
[
restart({ restart: [ '../static/**', ] }) // Restart server on static file change
],
}
@kevinfjbecker
Copy link
Author

A Vite config based on the tutorial config from Three.js Journey

requires vite-plugin-restart as a development dependency

npm install -d vite-plugin-restart

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment