fix lint issues
Test Workflow / test-and-lint (pull_request) Failing after 49s

This commit is contained in:
2026-05-30 23:46:10 -07:00
parent c16eab58a2
commit bc7b1ef4be
+3 -2
View File
@@ -1,5 +1,4 @@
import { loadEnvFile } from 'node:process'
loadEnvFile() // load envs asap
import { loadEnvFile } from 'node:process' // load envs asap
import express from 'express'
import path from 'path'
@@ -14,6 +13,8 @@ import collectionRoutes from './routes/collections/index.js'
import setRoutes from './routes/sets/index.js'
import itemRoutes from './routes/items/index.js'
loadEnvFile()
const app = express()
const port = process.env.PORT || 3000