This commit is contained in:
Tomas Mirchev 2025-06-25 18:30:46 +00:00
parent a914fe34e9
commit 9be7131d92
4 changed files with 5 additions and 11 deletions

View File

@ -1,10 +1,9 @@
<!doctype html>
<html lang="en">
<html lang="bg">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0" />-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Конспект</title>

View File

@ -1,10 +1,9 @@
<!doctype html>
<html lang="en">
<html lang="bg">
<head>
<meta charset="UTF-8" />
<link rel="icon" type="image/svg+xml" href="/vite.svg" />
<!--<meta name="viewport" content="width=device-width, initial-scale=1.0" />-->
<link rel="manifest" href="%PUBLIC_URL%/manifest.json" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<title>Конспект</title>

View File

@ -1,7 +1,8 @@
import "./index.css";
import { StrictMode, useLayoutEffect, useRef, useState, useEffect, useMemo } from "react";
import { createRoot } from "react-dom/client";
import { useParams, Navigate, BrowserRouter, Link, Outlet, Route, Routes } from "react-router";
import "./index.css";
import { useShallow } from "zustand/shallow";
import { marked } from "marked";
import { useStore } from "./store.js";

View File

@ -6,11 +6,6 @@ import tailwindcss from "@tailwindcss/vite";
export default defineConfig({
plugins: [react(), tailwindcss()],
server: {
allowedHosts: [
"personal.orb.local",
"b8b0-88-18-106-198.ngrok-free.app",
"1bea-88-18-106-198.ngrok-free.app",
"42b7-88-18-106-198.ngrok-free.app",
],
allowedHosts: ["personal.orb.local"],
},
});