fixed broken imports

This commit is contained in:
Stefan Zermatten
2022-11-24 11:35:34 +02:00
parent 2ebd598546
commit 2015e674dc
5 changed files with 6 additions and 6 deletions

View File

@@ -34,7 +34,7 @@
</template>
<script lang="js">
import LogEntry from '/imports/ui/log/LogEntry.vue';
import LogEntry from '/imports/client/ui/log/LogEntry.vue';
import { parse, prettifyParseError } from '/imports/parser/parser.js';
import resolve, { toString } from '/imports/parser/resolve.js';

View File

@@ -34,8 +34,8 @@
</template>
<script lang="js">
import DialogBase from '/imports/ui/dialogStack/DialogBase.vue';
import CharacterSheet from '/imports/ui/creature/character/CharacterSheet.vue';
import DialogBase from '/imports/client/ui/dialogStack/DialogBase.vue';
import CharacterSheet from '/imports/client/ui/creature/character/CharacterSheet.vue';
export default {
components: {

View File

@@ -10,7 +10,7 @@
<script>
import * as THREE from 'three';
import { Tracker } from 'meteor/tracker'
import { MapControls } from '/imports/ui/tabletop/three/OrbitControls.js';
import { MapControls } from '/imports/client/ui/tabletop/three/OrbitControls.js';
const maps = [
{

View File

@@ -35,7 +35,7 @@
</template>
<script lang="js">
import CardHighlight from '/imports/ui/components/CardHighlight.vue';
import CardHighlight from '/imports/client/ui/components/CardHighlight.vue';
export default {
components: {
CardHighlight,

View File

@@ -10,7 +10,7 @@
<script lang="js">
import CreatureLogs from '/imports/api/creature/log/CreatureLogs.js';
import insertTabletopLog from '/imports/api/creature/log/CreatureLogs.js';
import LogComponent from '/imports/ui/log/LogComponent.vue';
import LogComponent from '/imports/client/ui/log/LogComponent.vue';
export default {
components: {