Files
WeatherTool/web/vite.config.ts
T

13 lines
214 B
TypeScript
Raw Normal View History

2025-01-24 23:01:49 +02:00
import { defineConfig } from 'vite'
import solidPlugin from 'vite-plugin-solid'
export default defineConfig({
2026-08-21 10:45:36 +03:00
plugins: [solidPlugin()],
server: {
port: 3000,
},
build: {
target: 'esnext',
},
});