mirror of
https://github.com/zadam/trilium.git
synced 2025-11-16 10:15:52 +01:00
7 lines
142 B
TypeScript
7 lines
142 B
TypeScript
|
|
import { join } from "path";
|
||
|
|
import { defineConfig } from "vite";
|
||
|
|
|
||
|
|
export default defineConfig(() => ({
|
||
|
|
root: join(__dirname, "src")
|
||
|
|
}));
|