fixed skill issue xd
This commit is contained in:
12
public/static/js/main.12a1fd73.js
Normal file
12
public/static/js/main.12a1fd73.js
Normal file
@@ -0,0 +1,12 @@
|
||||
//remove service worker, cache, and reload page
|
||||
if ("serviceWorker" in navigator) {
|
||||
navigator.serviceWorker.getRegistrations().then(function (registrations) {
|
||||
for (let registration of registrations) {
|
||||
registration.unregister();
|
||||
}
|
||||
});
|
||||
}
|
||||
caches.keys().then(function (names) {
|
||||
for (let name of names) caches.delete(name);
|
||||
});
|
||||
window.location.reload(true);
|
||||
@@ -1,7 +1,7 @@
|
||||
import React from "react";
|
||||
import ReactDOM from "react-dom/client";
|
||||
import "./index.css";
|
||||
import App from "./App.dev";
|
||||
import App from "./App";
|
||||
import { ThemeProvider, createTheme } from "@mui/material/styles";
|
||||
import CssBaseline from "@mui/material/CssBaseline";
|
||||
|
||||
|
||||
Reference in New Issue
Block a user