Created
February 13, 2025 12:58
-
-
Save kevinfjbecker/8f5c89a1a94d5e298b924c8b180e72d3 to your computer and use it in GitHub Desktop.
Vite Config (kevinfjbecker)
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
], | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
A Vite config based on the tutorial config from Three.js Journey
requires vite-plugin-restart as a development dependency