From bb1583a2e363d1c2286ceb05a6ea983ae1ecd7dc Mon Sep 17 00:00:00 2001 From: ysfscream <894402575bt@gmail.com> Date: Thu, 28 Jul 2022 15:38:51 +0800 Subject: [PATCH] fix(ci): fix deploy web CI failed issue --- .github/workflows/deploy_web.yaml | 2 +- web/src/router/index.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/deploy_web.yaml b/.github/workflows/deploy_web.yaml index 2814dbc3e..f11fb7484 100644 --- a/.github/workflows/deploy_web.yaml +++ b/.github/workflows/deploy_web.yaml @@ -13,7 +13,7 @@ jobs: - name: use node.js uses: actions/setup-node@v1 with: - node-version: 16.15 + node-version: 16.14 - uses: actions/checkout@v2 - name: set env run: | diff --git a/web/src/router/index.ts b/web/src/router/index.ts index e56003d32..ec7e76eb2 100644 --- a/web/src/router/index.ts +++ b/web/src/router/index.ts @@ -2,7 +2,7 @@ import Vue from 'vue' import Router from 'vue-router' import routes from './routes' import { loadConnections } from '@/utils/api/connection' -import { ConnectionModel } from '@/views/Connections/types' +import { ConnectionModel } from '../views/Connections/types' Vue.use(Router)