opencode/packages/ui/vite.config.ts
Adam 37e6c8342f
Some checks are pending
deploy / deploy (push) Waiting to run
format / format (push) Waiting to run
snapshot / publish (push) Waiting to run
test / test (push) Waiting to run
wip: css and ui packages
2025-10-14 07:16:24 -05:00

10 lines
206 B
TypeScript

import { defineConfig } from "vite"
import solidPlugin from "vite-plugin-solid"
export default defineConfig({
plugins: [solidPlugin()],
server: { port: 3001 },
build: {
target: "esnext",
},
})