0
0
mirror of https://github.com/naturalcrit/homebrewery.git synced 2025-12-24 16:22:44 +00:00

Revert unnecessary change in app.js

This commit is contained in:
G.Ambatte
2025-04-09 11:04:57 +12:00
parent bd68b9c0cb
commit 95f44f4460

View File

@@ -2,11 +2,10 @@
// Set working directory to project root
import { dirname } from 'path';
import { fileURLToPath } from 'url';
import packageJSON from './../package.json' with { type: 'json' };
const __dirname = dirname(fileURLToPath(import.meta.url));
process.chdir(`${__dirname}/..`);
import packageJSON from '../package.json' with { type: 'json' };
const version = packageJSON.version;
import _ from 'lodash';