mirror of
https://github.com/Rezmason/matrix.git
synced 2026-04-14 12:29:30 -07:00
10 lines
253 B
JavaScript
10 lines
253 B
JavaScript
import { defineConfig } from "vite";
|
|
|
|
// https://vite.dev/config/
|
|
// https://github.com/vitejs/vite/blob/main/docs/guide/build.md
|
|
export default defineConfig((args) => {
|
|
return {
|
|
// assetsInclude: ["assets/**.png", "shaders/**.{wgsl,glsl}"],
|
|
};
|
|
});
|