File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change 11import "~/styles/globals.css" ;
22
3- import { type Metadata } from "next" ;
3+ import { type Metadata , type Viewport } from "next" ;
44import { Geist } from "next/font/google" ;
55
66import { TRPCReactProvider } from "~/trpc/react" ;
77
88export const metadata : Metadata = {
99 title : "PVE Scripts local" ,
1010 description : "Manage and execute Proxmox helper scripts locally with live output streaming" ,
11- viewport : "width=device-width, initial-scale=1, maximum-scale=1" ,
1211 icons : [
1312 { rel : "icon" , url : "/favicon.png" , type : "image/png" } ,
1413 { rel : "icon" , url : "/favicon.ico" , sizes : "any" } ,
1514 { rel : "apple-touch-icon" , url : "/favicon.png" } ,
1615 ] ,
1716} ;
1817
18+ export const viewport : Viewport = {
19+ width : "device-width" ,
20+ initialScale : 1 ,
21+ maximumScale : 1 ,
22+ } ;
23+
1924const geist = Geist ( {
2025 subsets : [ "latin" ] ,
2126 variable : "--font-jetbrains-mono" ,
You can’t perform that action at this time.
0 commit comments