tank movement (without collision)

This commit is contained in:
Vinzenz Schroeter 2024-04-07 17:17:11 +02:00
parent a3bd582b2e
commit 54b840da3e
18 changed files with 321 additions and 254 deletions

View file

@ -1,7 +1,12 @@
import { defineConfig } from 'vite'
import react from '@vitejs/plugin-react'
import {defineConfig} from 'vite';
import react from '@vitejs/plugin-react';
// https://vitejs.dev/config/
export default defineConfig({
plugins: [react()],
})
plugins: [react()],
build: {
outDir: '../TanksServer/client',
emptyOutDir: true
}
});