mirror of
https://github.com/umami-software/umami.git
synced 2026-02-19 20:15:41 +01:00
Refactor configuration files for consistency and readability. Update docker-compose and podman-compose to use single quotes for strings. Adjust healthcheck commands to use single quotes. Clean up whitespace in various files, including README and JSON language files, to ensure proper formatting.
This commit is contained in:
parent
610ca29cb5
commit
d961c058dd
13 changed files with 6793 additions and 2456 deletions
|
|
@ -178,7 +178,8 @@ if (cloudMode && cloudUrl) {
|
|||
|
||||
// Disable standalone output on Windows to avoid symlink errors during build.
|
||||
// Enable by setting NEXT_STANDALONE=true when needed (e.g., Docker/Linux deploys).
|
||||
const enableStandaloneOutput = process.platform !== 'win32' && (process.env.NEXT_STANDALONE !== 'false');
|
||||
const enableStandaloneOutput =
|
||||
process.platform !== 'win32' && process.env.NEXT_STANDALONE !== 'false';
|
||||
|
||||
/** @type {import('next').NextConfig} */
|
||||
export default {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue