mirror of
https://ghproxy.com/https://github.com/StreakingMan/solvable-sheep-game
synced 2025-05-23 02:41:10 +08:00
15 lines
274 B
TypeScript
15 lines
274 B
TypeScript
import { defineConfig } from 'vite';
|
|
import react from '@vitejs/plugin-react';
|
|
|
|
// https://vitejs.dev/config/
|
|
export default defineConfig({
|
|
plugins: [react()],
|
|
server: {
|
|
host: true,
|
|
port: 5555,
|
|
},
|
|
define: {
|
|
__DIY__: false,
|
|
},
|
|
});
|