GHHG10/CodeServer / opencode /packages /ui /vite.config.ts
GHHG10's picture
download
raw
1.46 kB
import { defineConfig } from "vite"
import solidPlugin from "vite-plugin-solid"
import { iconsSpritesheet } from "vite-plugin-icons-spritesheet"
import fs from "fs"
export default defineConfig({
plugins: [
solidPlugin(),
providerIconsPlugin(),
iconsSpritesheet([
{
withTypes: true,
inputDir: "src/assets/icons/file-types",
outputDir: "src/components/file-icons",
formatter: "prettier",
},
{
withTypes: true,
inputDir: "src/assets/icons/provider",
outputDir: "src/components/provider-icons",
formatter: "prettier",
iconNameTransformer: (iconName) => iconName,
},
]),
],
server: { port: 3001 },
build: {
target: "esnext",
},
worker: {
format: "es",
},
})
function providerIconsPlugin() {
return {
name: "provider-icons-plugin",
configureServer() {
void fetchProviderIcons()
},
buildStart() {
void fetchProviderIcons()
},
}
}
async function fetchProviderIcons() {
const url = process.env.OPENCODE_MODELS_URL || "https://models.dev"
const providers = await fetch(`${url}/api.json`)
.then((res) => res.json())
.then((json) => Object.keys(json))
await Promise.all(
providers.map((provider) =>
fetch(`${url}/logos/${provider}.svg`)
.then((res) => res.text())
.then((svg) => fs.writeFileSync(`./src/assets/icons/provider/${provider}.svg`, svg)),
),
)
}

Xet Storage Details

Size:
1.46 kB
·
Xet hash:
08a5b1073d3b6c1361c17f77f6ba6c665449c2af44fb1b3aa9022bb8bc8334e4

Xet efficiently stores files, intelligently splitting them into unique chunks and accelerating uploads and downloads. More info.