From 7ad8cd7e24d7b5967dd3372bd8110b9f4955dc13 Mon Sep 17 00:00:00 2001 From: Alan Rynne Date: Tue, 31 Oct 2023 12:07:01 +0100 Subject: [PATCH] fix: Pack speckle logo with webpack correctly --- src/views/HomeView.vue | 2 +- tsconfig.json | 14 ++++---------- 2 files changed, 5 insertions(+), 11 deletions(-) diff --git a/src/views/HomeView.vue b/src/views/HomeView.vue index e017182..657c9fc 100644 --- a/src/views/HomeView.vue +++ b/src/views/HomeView.vue @@ -20,7 +20,7 @@ function goToGuide() { class="flex flex-col justify-center items-center h-full w-full bg-primary text-center text-foundation" >
- Logo + Logo

Speckle PowerBI 3D Visual

diff --git a/tsconfig.json b/tsconfig.json index 7c70a92..21b0b18 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -12,14 +12,10 @@ "allowSyntheticDefaultImports": true, "esModuleInterop": true, "types": [], - "baseUrl": "./", + "baseUrl": ".", "paths": { - "src/*": [ - "./src/*" - ], - "assets/*": [ - "./assets/*" - ] + "@src/*": ["src/*"], + "@assets/*": ["assets/*"] } }, "ts-node": { @@ -30,7 +26,5 @@ }, "files": ["./src/visual.ts"], "include": ["./src/**/*.ts", "./src/**/*.vue"], - "exclude": [ - "webpack.config.dev.ts" - ] + "exclude": ["webpack.config.dev.ts"] }