mirror of
https://github.com/snowball-tools/snowballtools-base.git
synced 2025-01-08 03:28:05 +00:00
934aa1a26b
This PR centralizes all the environment variable references into a single constants file. The change includes replacing various `import.meta.env` references with imports from the new `utils/constants` module. This improves maintainability by providing a single place to manage environment variables.
48 lines
1.4 KiB
TypeScript
48 lines
1.4 KiB
TypeScript
import React from 'react';
|
|
import ReactDOM from 'react-dom/client';
|
|
import assert from 'assert';
|
|
import { GQLClient } from 'gql-client';
|
|
|
|
import { ThemeProvider } from '@snowballtools/material-tailwind-react-fork';
|
|
|
|
import './index.css';
|
|
import '@fontsource/inter';
|
|
import '@fontsource-variable/jetbrains-mono';
|
|
import App from './App';
|
|
import reportWebVitals from './reportWebVitals';
|
|
import { GQLClientProvider } from './context/GQLClientContext';
|
|
import { SERVER_GQL_PATH } from './constants';
|
|
import { Toaster } from 'components/shared/Toast';
|
|
import { LogErrorBoundary } from 'utils/log-error';
|
|
import { baseUrl } from 'utils/constants';
|
|
|
|
// @ts-ignore
|
|
console.log(`v-${__VERSION__}`);
|
|
|
|
const root = ReactDOM.createRoot(
|
|
document.getElementById('root') as HTMLElement,
|
|
);
|
|
|
|
assert(baseUrl, 'VITE_SERVER_URL is not set in env');
|
|
const gqlEndpoint = `${baseUrl}/${SERVER_GQL_PATH}`;
|
|
|
|
const gqlClient = new GQLClient({ gqlEndpoint });
|
|
|
|
root.render(
|
|
<LogErrorBoundary>
|
|
<React.StrictMode>
|
|
<ThemeProvider>
|
|
<GQLClientProvider client={gqlClient}>
|
|
<App />
|
|
<Toaster />
|
|
</GQLClientProvider>
|
|
</ThemeProvider>
|
|
</React.StrictMode>
|
|
</LogErrorBoundary>,
|
|
);
|
|
|
|
// If you want to start measuring performance in your app, pass a function
|
|
// to log results (for example: reportWebVitals(console.log))
|
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
|
reportWebVitals();
|