From 2fe63ada6537c9898f433deb6dbe6df5f35b9857 Mon Sep 17 00:00:00 2001 From: Louis Date: Thu, 13 Jun 2024 14:48:53 +0700 Subject: [PATCH] fix: build error due to relative import path --- cortex-js/src/domain/abstracts/engine.abstract.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cortex-js/src/domain/abstracts/engine.abstract.ts b/cortex-js/src/domain/abstracts/engine.abstract.ts index 18f5cf0b5..0b11ee9aa 100644 --- a/cortex-js/src/domain/abstracts/engine.abstract.ts +++ b/cortex-js/src/domain/abstracts/engine.abstract.ts @@ -1,6 +1,6 @@ /* eslint-disable no-unused-vars, @typescript-eslint/no-unused-vars */ import stream from 'stream'; -import { Model, ModelSettingParams } from '@/domain/models/model.interface'; +import { Model, ModelSettingParams } from '../../domain/models/model.interface'; import { Extension } from './extension.abstract'; export abstract class EngineExtension extends Extension {