feat: Chapters Editor (init) [copy from video editor]

This commit is contained in:
Yiannis Christodoulou
2025-07-27 23:24:45 +03:00
parent e65e8c2055
commit 8a87aad647
59 changed files with 35922 additions and 0 deletions
@@ -0,0 +1,22 @@
import { defineConfig } from "vite";
import react from "@vitejs/plugin-react";
import path from "path";
// Get current directory
const __dirname = path.resolve();
export default defineConfig({
plugins: [
react(),
],
resolve: {
alias: {
"@": path.resolve(__dirname, "client", "src"),
},
},
root: path.resolve(__dirname, "client"),
build: {
outDir: path.resolve(__dirname, "dist/public"),
emptyOutDir: true,
},
});