mirror of
https://github.com/denismhz/solar-system.git
synced 2025-11-09 16:16:22 +01:00
10 lines
233 B
JavaScript
10 lines
233 B
JavaScript
import { defineConfig } from "vite";
|
|
import react from "@vitejs/plugin-react";
|
|
import glsl from "vite-plugin-glsl";
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react(), glsl()],
|
|
publicDir: 'public'
|
|
});
|