1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00

Revert merging of usrconfig to use let declaration

This commit is contained in:
Chauncey McAskill
2023-03-03 13:13:31 -05:00
parent 7be5e48f22
commit 349d110dee

View File

@@ -5,9 +5,11 @@
import loconfig from '../../loconfig.json' assert { type: 'json' };
import { merge } from '../utils/index.js';
let usrconfig;
try {
const usrconfig = await import('../../loconfig.local.json', {
assert: { type: "json" },
usrconfig = await import('../../loconfig.local.json', {
assert: { type: 'json' },
});
usrconfig = usrconfig.default;