Add runnable graph editor controls

This commit is contained in:
2026-06-19 00:58:21 +02:00
parent 952f0b425a
commit 1068f7e659
10 changed files with 14932 additions and 10160 deletions

View File

@@ -1,7 +1,17 @@
import { fileURLToPath, URL } from 'node:url'
import { defineConfig } from 'vite'
import vue from '@vitejs/plugin-vue'
// https://vite.dev/config/
export default defineConfig({
plugins: [vue()],
resolve: {
alias: {
graphfx: fileURLToPath(new URL('..', import.meta.url)),
},
},
server: {
fs: {
allow: ['..'],
},
},
})