mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-05-24 02:02:36 -04:00
56 lines
1.1 KiB
TypeScript
56 lines
1.1 KiB
TypeScript
import { resolvePath } from "@vxrn/resolve";
|
|
import { one } from "one/vite";
|
|
import type { UserConfig } from "vite";
|
|
import compileTime from "vite-plugin-compile-time";
|
|
import svgr from "vite-plugin-svgr";
|
|
|
|
export default {
|
|
ssr: {
|
|
noExternal: ["@tanstack/react-query", "@tanstack/react-query-devtools"],
|
|
},
|
|
esbuild: {
|
|
include: [/.tsx?$/],
|
|
},
|
|
resolve: {
|
|
alias: {
|
|
"@react-native/assets-registry/registry": resolvePath(
|
|
"react-native-web/dist/modules/AssetRegistry/index.js",
|
|
),
|
|
},
|
|
},
|
|
plugins: [
|
|
one({
|
|
web: {
|
|
defaultRenderMode: "ssr",
|
|
},
|
|
deps: {
|
|
"@expo/html-elements": {
|
|
"**/*.js": ["jsx"],
|
|
},
|
|
"inline-style-prefixer/lib": "interop",
|
|
yoshiki: {
|
|
"**/*.tsx": ["jsx"],
|
|
},
|
|
},
|
|
}),
|
|
svgr({
|
|
include: "**/*.svg",
|
|
svgrOptions: {
|
|
native: true,
|
|
},
|
|
}),
|
|
compileTime(),
|
|
],
|
|
server: {
|
|
proxy: {
|
|
"/api": {
|
|
target: process.env.KYOO_URL ?? "http://back/api",
|
|
changeOrigin: true,
|
|
// without this we have two /api at the start
|
|
rewrite: (path) => path.replace(/^\/api/, ""),
|
|
},
|
|
},
|
|
allowedHosts: true,
|
|
},
|
|
} satisfies UserConfig;
|