This commit is contained in:
yaschalew
2026-07-10 16:20:31 +03:00
parent bdb59b11bd
commit a35e48795b
3 changed files with 4 additions and 4 deletions

View File

@@ -4,10 +4,10 @@
"private": true,
"type": "module",
"scripts": {
"dev": "vite --port 3000 --clearScreen false",
"dev": "vite --port 5183 --clearScreen false",
"prebuild": "node -e \"const fs=require('fs'); fs.rmSync('dist',{recursive:true,force:true});\"",
"build": "vite build",
"preview": "vite preview --port 3000",
"preview": "vite preview --port 5183",
"lint": "eslint src",
"test": "vitest run",
"type-check": "tsc -b"

View File

@@ -145,7 +145,7 @@ const buildSidebarSections = (demoItems: SidebarItem[]): SidebarSection[] => [
},
{
label: "Staff",
href: "/um",
href: "/user-management",
icon: <Users />,
},
{

View File

@@ -31,7 +31,7 @@ export default defineConfig(() => {
dedupe: ["react", "react-dom", "@mantine/core", "@mantine/hooks"],
},
server: {
port: 3000,
port: 5183,
host: "0.0.0.0",
},
test: {