Files
Memoh/packages/web/vite.config.ts
T
2026-02-14 22:16:55 +08:00

73 lines
1.9 KiB
TypeScript

import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
import tailwindcss from '@tailwindcss/vite'
import { createRequire } from 'module'
import { fileURLToPath } from 'url'
// https://vite.dev/config/
export default defineConfig(({ command }) => {
const require = createRequire(import.meta.url)
const defaultPort = 8082
const defaultHost = '127.0.0.1'
const defaultApiBaseUrl = process.env.VITE_API_URL ?? 'http://localhost:8080'
let port = defaultPort
let host = defaultHost
let baseUrl = defaultApiBaseUrl
if (command !== 'build') {
try {
const { loadConfig, getBaseUrl } = require('@memoh/config') as {
loadConfig: (path: string) => {
web?: { port?: number; host?: string }
}
getBaseUrl: (config: unknown) => string
}
let config
try {
config = loadConfig('../../config.toml')
} catch {
config = loadConfig('../../docker/config/config.docker.toml')
}
port = config.web?.port ?? defaultPort
host = config.web?.host ?? defaultHost
baseUrl = getBaseUrl(config)
} catch {
// Fall back to env/default values when config.toml is unavailable.
}
}
return {
plugins: [vue(), tailwindcss()],
server: {
port,
host,
proxy: {
'/api': {
target: baseUrl,
changeOrigin: true,
rewrite: (path: string) => path.replace(/^\/api/, '')
}
},
},
preview: {
port,
host: '0.0.0.0',
proxy: {
'/api': {
target: baseUrl,
changeOrigin: true,
rewrite: (path: string) => path.replace(/^\/api/, '')
}
},
allowedHosts: true,
},
resolve: {
alias: {
'#': fileURLToPath(new URL('../ui/src', import.meta.url)),
'@': fileURLToPath(new URL('./src', import.meta.url))
},
},
}
})