namds/refactor-base-layout #8

Merged
yen.nguyen merged 27 commits from namds/refactor-base-layout into main 2025-12-15 07:44:38 +00:00
2 changed files with 6 additions and 2 deletions
Showing only changes of commit 3e5a88f42d - Show all commits

View File

@ -1,8 +1,8 @@
import fs from "fs"
import path from "path"
import { jsonFileNames } from "./devJsonFileNames";
//const fileName = "ste.medusa-starter.design.json";
const fileName = "ste.playground.design.json";
const fileName = jsonFileNames.stePlayGround;
export async function loadDesignConfig() {
const filePath = path.join(process.cwd(), "config", fileName)

View File

@ -0,0 +1,4 @@
export const jsonFileNames = {
steMedusaStarter: "ste.medusa-starter.design.json",
stePlayGround: "ste.playground.design.json"
};