radames's picture
menu
66ed450 unverified
raw
history blame
391 Bytes
import { sveltekit } from '@sveltejs/kit/vite';
import type { UserConfig } from 'vite';
const config: UserConfig = {
plugins: [sveltekit()],
server: {
// host: "0.0.0.0",
proxy: {
'/moon': {
target: 'https://huggingface.co',
changeOrigin: true,
cookieDomainRewrite: 'localhost',
rewrite: (path) => path.replace(/^\/moon/, '')
}
}
}
};
export default config;