⚠️ Use alias Rollup plugin to omit full imports
All checks were successful
continuous-integration/drone/push Build is passing
All checks were successful
continuous-integration/drone/push Build is passing
- Define entries (utils, animations, etc) in the Rollup config in order to omit the whole back path (../../) when importing a file - Global revoleExtensions in the config (to avoid duplicates)
This commit is contained in:
@@ -1,10 +1,10 @@
|
||||
<script>
|
||||
// Svelte
|
||||
import { site, currentLocation } from '../utils/store'
|
||||
import { site, currentLocation } from 'utils/store'
|
||||
|
||||
// Components
|
||||
import LinkTranslate from '../atoms/LinkTranslate'
|
||||
import Switcher from '../molecules/Switcher'
|
||||
import LinkTranslate from 'atoms/LinkTranslate'
|
||||
import Switcher from 'molecules/Switcher'
|
||||
</script>
|
||||
|
||||
<footer class="footer">
|
||||
|
||||
Reference in New Issue
Block a user