mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-10-18 04:20:43 -04:00
8 lines
179 B
TypeScript
8 lines
179 B
TypeScript
// Typed as UserConfig for handy autocomplete
|
|
import type { UserConfig } from "vite";
|
|
import { one } from "one/vite";
|
|
|
|
export default {
|
|
plugins: [one()],
|
|
} satisfies UserConfig;
|