Skip to content

Commit

Permalink
fix(pv-stylemark): fixed lsg asset loading issue
Browse files Browse the repository at this point in the history
  • Loading branch information
friewerts committed Feb 21, 2024
1 parent 20a026c commit 80c9da0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
11 changes: 5 additions & 6 deletions packages/pv-stylemark/ui/styles/fonts.scss
Original file line number Diff line number Diff line change
@@ -1,18 +1,17 @@
@font-face {
font-display: swap;
font-family: 'Inter';
font-family: "Inter";
font-style: normal;
font-weight: 400;
src: url('../../resources/fonts/inter/inter-regular.woff2') format('woff2');
src: url("../resources/fonts/inter/inter-regular.woff2") format("woff2");
}


@font-face {
font-display: swap;
font-family: 'Inter';
font-family: "Inter";
font-style: normal;
font-weight: 700;
src: url('../../resources/fonts/inter/inter-700.woff2') format('woff2');
src: url("../resources/fonts/inter/inter-700.woff2") format("woff2");
}

$dds-font-family--inter: 'Inter', sans-serif;
$dds-font-family--inter: "Inter", sans-serif;
1 change: 1 addition & 0 deletions packages/pv-stylemark/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import { resolve } from "path";
import { defineConfig } from "vite";

export default defineConfig({
base: "./",
build: {
emptyOutDir: false,
rollupOptions: {
Expand Down

0 comments on commit 80c9da0

Please sign in to comment.