feat: Initialize InstaArchive PWA project

Sets up a new React PWA project with Vite, Tailwind CSS, and basic PWA features. Includes essential files like README, .gitignore, package.json, and initial app structure.
This commit is contained in:
ergosteur
2026-03-06 22:41:48 -05:00
parent a724e5bc87
commit cd7dc5f981
12 changed files with 10810 additions and 8 deletions
+13
View File
@@ -0,0 +1,13 @@
import {StrictMode} from 'react';
import {createRoot} from 'react-dom/client';
import App from './App.tsx';
import './index.css';
import { registerSW } from 'virtual:pwa-register';
registerSW();
createRoot(document.getElementById('root')!).render(
<StrictMode>
<App />
</StrictMode>,
);