We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7bd91cf commit 41ee8f4Copy full SHA for 41ee8f4
app/composables/useAnimation.ts
@@ -1,3 +1,5 @@
1
+import { urlBasePath } from '~/utils/constants'
2
+
3
export function useAnimation() {
4
// types
5
type TWindowType = 'sm' | 'md' | 'lg'
@@ -99,7 +101,7 @@ export function useAnimation() {
99
101
x: (GAP + GRID) / 2 + col * (GAP + GRID),
100
102
y: (GAP + GRID) / 2 + row * (GAP + GRID),
103
rotate: 0,
- src: '',
104
+ src: urlBasePath,
105
key: `${row}-${col}`,
106
}
107
switch (p) {
0 commit comments