release the browser version code

This commit is contained in:
wj-xiao
2025-04-02 17:29:49 +08:00
parent 69bd6d7577
commit 36f87c7d14
64 changed files with 8366 additions and 0 deletions

13
browser/vite.config.ts Normal file
View File

@@ -0,0 +1,13 @@
import react from '@vitejs/plugin-react';
import { defineConfig } from 'vite';
import viteTsconfigPaths from 'vite-tsconfig-paths';
export default defineConfig({
plugins: [react(), viteTsconfigPaths()],
server: {
port: 3001
},
build: {
chunkSizeWarningLimit: 1024
}
});