feat: Automate Dropbox data loading with Vite proxy

This commit is contained in:
Christian Vidal Wolf
2026-01-16 10:20:22 +01:00
parent 135e0d78ed
commit 470db20458
9 changed files with 406 additions and 1664 deletions
+1 -4
View File
@@ -1,7 +1,6 @@
import React from 'react';
import ReactDOM from 'react-dom/client';
import App from './App';
import ErrorBoundary from './components/ErrorBoundary';
const rootElement = document.getElementById('root');
if (!rootElement) {
@@ -11,8 +10,6 @@ if (!rootElement) {
const root = ReactDOM.createRoot(rootElement);
root.render(
<React.StrictMode>
<ErrorBoundary>
<App />
</ErrorBoundary>
<App />
</React.StrictMode>
);