feat(P2603): sistema de bitácoras web dtic-BITACORAs - React 18 + Node.js + PostgreSQL

This commit is contained in:
Ricardo Monla
2026-03-03 12:50:10 -03:00
parent 2685989e77
commit 680dbe6f8d
33 changed files with 1036 additions and 7 deletions
+8
View File
@@ -0,0 +1,8 @@
import { defineConfig } from 'vite';
import react from '@vitejs/plugin-react';
export default defineConfig({
plugins: [react()],
server: { host: true, port: 5173 },
define: { 'import.meta.env.VERSION': JSON.stringify(require('./package.json').version) }
});