mirror of
https://github.com/anomalyco/opencode.git
synced 2026-02-01 22:48:16 +00:00
37 lines
763 B
TypeScript
37 lines
763 B
TypeScript
import { defineConfig, PluginOption } from "vite"
|
|
import { solidStart } from "@solidjs/start/config"
|
|
import { nitro } from "nitro/vite"
|
|
import tailwindcss from "@tailwindcss/vite"
|
|
|
|
const nitroConfig: any = (() => {
|
|
const target = process.env.OPENCODE_DEPLOYMENT_TARGET
|
|
if (target === "cloudflare") {
|
|
return {
|
|
compatibilityDate: "2024-09-19",
|
|
preset: "cloudflare_module",
|
|
cloudflare: {
|
|
nodeCompat: true,
|
|
},
|
|
}
|
|
}
|
|
return {}
|
|
})()
|
|
|
|
export default defineConfig({
|
|
plugins: [
|
|
tailwindcss(),
|
|
solidStart() as PluginOption,
|
|
nitro({
|
|
...nitroConfig,
|
|
baseURL: process.env.OPENCODE_BASE_URL,
|
|
}),
|
|
],
|
|
server: {
|
|
host: "0.0.0.0",
|
|
allowedHosts: true,
|
|
},
|
|
worker: {
|
|
format: "es",
|
|
},
|
|
})
|