mirror of
https://github.com/different-ai/openwork
synced 2026-04-25 17:15:34 +02:00
14 lines
226 B
TypeScript
14 lines
226 B
TypeScript
import { defineConfig } from "vite";
|
|
import solid from "vite-plugin-solid";
|
|
|
|
export default defineConfig({
|
|
plugins: [solid()],
|
|
server: {
|
|
port: 5173,
|
|
strictPort: true,
|
|
},
|
|
build: {
|
|
target: "esnext",
|
|
},
|
|
});
|