fix: 안쓰는 코드 정리

This commit is contained in:
yoosangwook 2024-11-28 11:06:17 +09:00
parent bce6f0e0d7
commit ce52cbaade
2 changed files with 1 additions and 2 deletions

View File

@ -12,7 +12,6 @@ const IMAGE_FILE_PATH = 'public/plan-bg-images'
* @returns
*/
const convertDwgToPng = async (fileName, data) => {
console.log('fileName', fileName)
try {
await fs.readdir(CAD_FILE_PATH)
} catch {

View File

@ -5,6 +5,6 @@ export const sessionOptions = {
cookieName: 'lama-session',
cookieOptions: {
httpOnly: true,
secure: process.env.NODE_ENV === 'production',
// secure: process.env.NODE_ENV === 'production',
},
}