Skip to content

Commit

Permalink
fix(lib/main): fix import for build
Browse files Browse the repository at this point in the history
  • Loading branch information
tkohr committed Oct 15, 2024
1 parent 78640cc commit 9b7343a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/bundle/lib.ts
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ import { clearLayersCache } from '@/stores/layers.cache'
import i18next, { InitOptions } from 'i18next'
import backend from 'i18next-http-backend'
import I18NextVue from 'i18next-vue'
import formatDistanceDirective from './directives/format-distance.directive'
import formatDistanceDirective from '@/directives/format-distance.directive'

import App from '../App.vue'

Expand Down
2 changes: 1 addition & 1 deletion src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import { createPinia } from 'pinia'
import { initProjections } from '@/services/projection.utils'
import { useThemeStore } from './stores/config.store'
import { themesApiFixture } from './__fixtures__/themes.api.fixture'
import formatDistanceDirective from './directives/format-distance.directive'
import formatDistanceDirective from '@/directives/format-distance.directive'

import App from './App.vue'

Expand Down

0 comments on commit 9b7343a

Please sign in to comment.