From 76fbc1ceebabb6fd3631cde0c59965ceea878eaf Mon Sep 17 00:00:00 2001 From: Shomari Date: Mon, 13 Jan 2025 14:13:40 -0500 Subject: [PATCH] Setup standalone build. --- web/next.config.js | 1 + web/package.json | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/web/next.config.js b/web/next.config.js index 9f45b8cb..9014156e 100644 --- a/web/next.config.js +++ b/web/next.config.js @@ -2,6 +2,7 @@ const withMarkdoc = require('@markdoc/next.js') /** @type {import('next').NextConfig} */ const nextConfig = { + output: 'standalone', reactStrictMode: true, pageExtensions: ['js', 'jsx', 'md'], experimental: { diff --git a/web/package.json b/web/package.json index d55d044d..3b564652 100644 --- a/web/package.json +++ b/web/package.json @@ -1,6 +1,6 @@ { "name": "nexajs-web", - "version": "24.11.17", + "version": "25.1.13", "license": "MIT", "scripts": { "dev": "next dev", @@ -33,5 +33,9 @@ "eslint-config-next": "13.0.2", "prettier": "2.7.1", "prettier-plugin-tailwindcss": "0.1.13" + }, + "packageManager": "yarn@1.22.22", + "engines": { + "node": ">=21.0.0" } }