diff --git a/build/plugins.ts b/build/plugins.ts index 6c2df0bcd..4100e147c 100644 --- a/build/plugins.ts +++ b/build/plugins.ts @@ -11,8 +11,8 @@ import VueI18n from "@intlify/vite-plugin-vue-i18n"; import { visualizer } from "rollup-plugin-visualizer"; import removeConsole from "vite-plugin-remove-console"; import themePreprocessorPlugin from "@pureadmin/theme"; -import { genScssMultipleScopeVars } from "/@/layout/theme"; import DefineOptions from "unplugin-vue-define-options/vite"; +import { genScssMultipleScopeVars } from "../src/layout/theme"; export function getPluginsList( command: string, diff --git a/src/components/ReAuth/src/auth.tsx b/src/components/ReAuth/src/auth.tsx index 442565874..d2cf9b351 100644 --- a/src/components/ReAuth/src/auth.tsx +++ b/src/components/ReAuth/src/auth.tsx @@ -1,5 +1,5 @@ import { defineComponent, Fragment } from "vue"; -import { hasAuth } from "/@/router/utils"; +import { hasAuth } from "@/router/utils"; export default defineComponent({ name: "Auth", diff --git a/src/components/ReCountTo/src/normal/props.ts b/src/components/ReCountTo/src/normal/props.ts index 461a2db19..69fe6613f 100644 --- a/src/components/ReCountTo/src/normal/props.ts +++ b/src/components/ReCountTo/src/normal/props.ts @@ -1,5 +1,5 @@ import { PropType } from "vue"; -import { propTypes } from "/@/utils/propTypes"; +import { propTypes } from "@/utils/propTypes"; export const countToProps = { startVal: propTypes.number.def(0), endVal: propTypes.number.def(2020), diff --git a/src/components/ReCountTo/src/rebound/props.ts b/src/components/ReCountTo/src/rebound/props.ts index 08850418f..795611d2b 100644 --- a/src/components/ReCountTo/src/rebound/props.ts +++ b/src/components/ReCountTo/src/rebound/props.ts @@ -1,5 +1,5 @@ import { PropType } from "vue"; -import { propTypes } from "/@/utils/propTypes"; +import { propTypes } from "@/utils/propTypes"; export const reboundProps = { delay: propTypes.number.def(1), blur: propTypes.number.def(2), diff --git a/src/components/ReFlop/src/filpper.tsx b/src/components/ReFlop/src/filpper.tsx index 7ec908cec..77f6cfcf8 100644 --- a/src/components/ReFlop/src/filpper.tsx +++ b/src/components/ReFlop/src/filpper.tsx @@ -1,5 +1,5 @@ import { defineComponent, ref } from "vue"; -import { propTypes } from "/@/utils/propTypes"; +import { propTypes } from "@/utils/propTypes"; import "./filpper.css"; const props = { diff --git a/src/components/ReIcon/src/Select.vue b/src/components/ReIcon/src/Select.vue index 3bb899208..36d22ab43 100644 --- a/src/components/ReIcon/src/Select.vue +++ b/src/components/ReIcon/src/Select.vue @@ -1,7 +1,7 @@