refactor: Replace Webpack with Vite (#53)

This commit is contained in:
Razboy20
2024-01-24 19:40:30 -06:00
committed by GitHub
parent 1629c85818
commit 0560a01a55
112 changed files with 7322 additions and 32180 deletions

View File

@@ -1,7 +1,6 @@
import './hotReload';
import { DevStore } from '@shared/storage/DevStore';
import React, { useEffect } from 'react';
import { DevStore } from 'src/shared/storage/DevStore';
import render from 'src/views/lib/react';
import { createRoot } from 'react-dom/client';
const manifest = chrome.runtime.getManifest();
@@ -146,4 +145,4 @@ function DevDashboard() {
);
}
render(<DevDashboard />, document.getElementById('root'));
createRoot(document.getElementById('root')).render(<DevDashboard />);