We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent dfb68f5 commit 880d856Copy full SHA for 880d856
package.json
@@ -1,6 +1,6 @@
1
{
2
"name": "raspberry-pi-client",
3
- "version": "1.0.0-rc.4",
+ "version": "1.0.0-rc.5",
4
"private": true,
5
"scripts": {
6
"dev": "next dev",
scripts/initialize-environment.js
@@ -1,10 +1,10 @@
const fs = require("fs");
const { env } = require("process");
-const { version } = require("./package.json");
+const { version } = require("../package.json");
const configEnvName = "RPC_CONFIG";
const configJson = env[configEnvName];
const nodeEnv = env["NODE_ENV"];
7
-const configFilePath = "./data/config.json";
+const configFilePath = "../data/config.json";
8
9
function initializeConfig() {
10
const hasConfig = Boolean(configJson);
0 commit comments