refactor: 상대경로를 @ 시작 절대경로로

This commit is contained in:
2021-12-10 22:34:14 +09:00
parent b706fd468d
commit 9dc842c6e9
68 changed files with 395 additions and 365 deletions
+8 -8
View File
@@ -294,11 +294,11 @@
</div>
</template>
<script lang="ts">
import "../scss/common/bootstrap5.scss";
import "../scss/game_bg.scss";
import "@scss/common/bootstrap5.scss";
import "@scss/game_bg.scss";
import { defineComponent } from "vue";
import TopBackBar from "./components/TopBackBar.vue";
import TopBackBar from "@/components/TopBackBar.vue";
import {
CTable,
CTableBody,
@@ -306,18 +306,18 @@ import {
CTableHeaderCell,
CTableDataCell,
} from "@coreui/vue/src/components/table";
import { getIconPath } from "./util/getIconPath";
import { isBrightColor } from "./util/isBrightColor";
import { getIconPath } from "@util/getIconPath";
import { isBrightColor } from "@util/isBrightColor";
import {
abilityLeadint,
abilityLeadpow,
abilityPowint,
abilityRand,
} from "./util/generalStats";
} from "@util/generalStats";
import { clone, shuffle, sum } from "lodash";
import axios from "axios";
import { InvalidResponse } from "./defs";
import NumberInputWithInfo from "./components/NumberInputWithInfo.vue";
import { InvalidResponse } from "@/defs";
import NumberInputWithInfo from "@/components/NumberInputWithInfo.vue";
declare const nationList: {
nation: number;