Configure static export and health endpoint

This commit is contained in:
Alexa Amundson
2025-11-22 20:09:23 -06:00
parent ad33184ab5
commit fc14de8f86
3 changed files with 24 additions and 0 deletions

6
next.config.js Normal file
View File

@@ -0,0 +1,6 @@
/** @type {import('next').NextConfig} */
const nextConfig = {
output: 'export'
};
module.exports = nextConfig;

14
package.json Normal file
View File

@@ -0,0 +1,14 @@
{
"name": "blackroad-os-research",
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "next dev",
"build": "next build",
"export": "next export",
"start": "serve out -p $PORT -l 0.0.0.0"
},
"devDependencies": {
"serve": "^14.2.0"
}
}

4
public/health.json Normal file
View File

@@ -0,0 +1,4 @@
{
"status": "ok",
"service": "blackroad-os-research"
}