mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -04:00
22 lines
401 B
TypeScript
22 lines
401 B
TypeScript
import { one } from "one/vite";
|
|
import type { UserConfig } from "vite";
|
|
|
|
export default {
|
|
ssr: {
|
|
noExternal: ["@tanstack/react-query", "@tanstack/react-query-devtools"],
|
|
},
|
|
plugins: [
|
|
one({
|
|
deps: {
|
|
"@expo/html-elements": {
|
|
"**/*.js": ["jsx"],
|
|
},
|
|
"inline-style-prefixer/lib": "interop",
|
|
yoshiki: {
|
|
"**/*.tsx": ["jsx"],
|
|
},
|
|
},
|
|
}),
|
|
],
|
|
} satisfies UserConfig;
|