Compare commits

..

No commits in common. "4682aa000f51a9697b0ab9b3dc50d175ac976aa3" and "e6822c0009d5da1f53abbf5538b0a0f61851cd64" have entirely different histories.

5 changed files with 3 additions and 30 deletions

View File

@ -1,13 +0,0 @@
{
"sync": {
"region": "capital",
"configPath": "roadsign.toml"
},
"deployments": [
{
"region": "capital",
"site": "capital-app",
"path": ".next"
}
]
}

View File

@ -3,7 +3,6 @@ import type { NextConfig } from 'next'
const nextConfig: NextConfig = {
/* config options here */
reactStrictMode: true,
output: 'standalone',
generateBuildId: async () => {
return process.env.GIT_HASH ?? 'development'
},

View File

@ -5,7 +5,6 @@
"scripts": {
"dev": "next dev --turbopack",
"build": "next build",
"build-standalone": "next build && cp -r .next/static .next/standalone/.next/ && cp -r public .next/standalone",
"start": "next start",
"lint": "next lint"
},
@ -21,6 +20,7 @@
"@mui/x-charts": "^7.23.6",
"@tailwindcss/typography": "^0.5.16",
"@toolpad/core": "^0.11.0",
"@vercel/speed-insights": "^1.1.0",
"animate.css": "^4.1.1",
"axios": "^1.7.9",
"axios-case-converter": "^1.1.1",

View File

@ -1,15 +0,0 @@
id = "capital"
[[locations]]
id = "capital"
hosts = ["solsynth.dev", "www.solsynth.dev"]
paths = ["/"]
[[locations.destinations]]
id = "capital-destination"
uri = "http://localhost:3000"
[[applications]]
id = "capital-app"
workdir = "/workdir/capital"
command = ["node", "standalone/server.js"]
environment = ["HOSTNAME=0.0.0.0"]

View File

@ -4,6 +4,7 @@ import {
DocumentHeadTagsProps,
documentGetInitialProps,
} from '@mui/material-nextjs/v15-pagesRouter'
import { SpeedInsights } from '@vercel/speed-insights/next'
import { Html, Head, Main, NextScript, DocumentContext, DocumentProps } from 'next/document'
export default function Document(props: DocumentProps & DocumentHeadTagsProps) {
@ -16,6 +17,7 @@ export default function Document(props: DocumentProps & DocumentHeadTagsProps) {
<body className="antialiased">
<Main />
<NextScript />
<SpeedInsights />
</body>
</Html>
</AppCacheProvider>