fix: build not working on itch io

This commit is contained in:
Krzysztof Rudnicki 2025-08-03 09:19:29 +02:00
parent 13123234da
commit e87084588d

9
vite.config.js Normal file
View File

@ -0,0 +1,9 @@
import { defineConfig } from 'vite'
export default defineConfig({
base: './',
build: {
outDir: 'dist',
assetsDir: 'assets'
}
})