Skip to content

Commit

Permalink
remove some issues
Browse files Browse the repository at this point in the history
  • Loading branch information
Hetari committed Jul 10, 2024
1 parent 6d9b70f commit 042857f
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/App.vue
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
import Lenis from 'lenis';
import { Navbar } from '@/components/common';
import { Hero, Services } from './components/sections';
import { onMounted, ref } from 'vue';
import { onMounted } from 'vue';
import { LoadingScreen } from './components/design';
const lenis = new Lenis();
Expand Down
2 changes: 1 addition & 1 deletion src/animations/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import gsap, { TweenLite } from 'gsap';
import gsap from 'gsap';
import MotionPathHelper from 'gsap/MotionPathPlugin';
import ScrollTrigger from 'gsap/ScrollTrigger';
import { Ref } from 'vue';
Expand Down
8 changes: 4 additions & 4 deletions vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,11 @@ import vue from '@vitejs/plugin-vue';

// https://vitejs.dev/config/
export default defineConfig({
base: './',
base: '/portfolio/',
plugins: [vue()],
resolve: {
alias: {
'@': '/src'
}
}
'@': '/src',
},
},
});

0 comments on commit 042857f

Please sign in to comment.