chore: move off vercel
fuck vercel
This commit is contained in:
parent
05f310c933
commit
4193ebcaf4
5 changed files with 3 additions and 10 deletions
|
|
@ -29,7 +29,7 @@ function ThemeIcon({ inApp }: Props) {
|
|||
};
|
||||
|
||||
return (
|
||||
<button onClick={onClick} title={theme} className={`text-white ${inApp ? "text-black" : ""}`}>
|
||||
<button onClick={onClick} title={theme} className={`cursor-pointer text-white ${inApp ? "text-black" : ""}`}>
|
||||
{getIcon()}
|
||||
</button>
|
||||
);
|
||||
|
|
|
|||
|
|
@ -148,7 +148,7 @@ function SaveLitematic({ close, registerSubmit, dialogKeyHandler }: DialogProps)
|
|||
|
||||
// Write to file
|
||||
const bytes = await nbt.write(data, { compression: "gzip" });
|
||||
const blob = new Blob([bytes], { type: "application/x-gzip" });
|
||||
const blob = new Blob([new Uint8Array(bytes)], { type: "application/x-gzip" });
|
||||
const url = URL.createObjectURL(blob);
|
||||
|
||||
setLoading(false);
|
||||
|
|
|
|||
|
|
@ -150,7 +150,7 @@ function SaveSchem({ close, registerSubmit, dialogKeyHandler }: DialogProps) {
|
|||
|
||||
// Write to file
|
||||
const bytes = await nbt.write(data, { compression: "gzip" });
|
||||
const blob = new Blob([bytes], { type: "application/x-gzip" });
|
||||
const blob = new Blob([new Uint8Array(bytes)], { type: "application/x-gzip" });
|
||||
const url = URL.createObjectURL(blob);
|
||||
|
||||
setLoading(false);
|
||||
|
|
|
|||
|
|
@ -28,10 +28,6 @@ function PrivacyPolicy() {
|
|||
.
|
||||
</li>
|
||||
<li>Blockmatic also does not use cookies.</li>
|
||||
<li>
|
||||
Blockmatic is hosted by Vercel. I can not guarantee that Vercel does not collect any data, therefore I recommend reviewing their privacy
|
||||
policy for clarification.
|
||||
</li>
|
||||
</ul>
|
||||
|
||||
<p>Please also note that this privacy policy may be updated occasionally. It is recommended to review it from time to time.</p>
|
||||
|
|
|
|||
|
|
@ -1,3 +0,0 @@
|
|||
{
|
||||
"routes": [{ "src": "/[^.]+", "dest": "/", "status": 200 }]
|
||||
}
|
||||
Loading…
Reference in a new issue