Skip to content

Commit

Permalink
fix(local): intermediate request in public folder glob patterns
Browse files Browse the repository at this point in the history
  • Loading branch information
Novout committed Sep 20, 2022
1 parent ebe67cf commit 2eb6933
Show file tree
Hide file tree
Showing 11 changed files with 9 additions and 11 deletions.
2 changes: 0 additions & 2 deletions packages/better-write-app/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@
<link rel="icon" href="/favicon.ico" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta name="google-site-verification" content="g3Sv5vbTY0qPQyuRyjR322G-PV1A5hD9pQ3EN3lWKpI" />
<link rel="dns-prefetch" href="https://fonts.googleapis.com">
<link rel="dns-prefetch" href="https://fonts.gstatic.com">
<link rel="apple-touch-icon" sizes="180x180" href="/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="/favicon-16x16.png">
Expand Down
2 changes: 1 addition & 1 deletion packages/better-write-app/src/pages/Landing.vue
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
v-motion
:initial="{ opacity: 0, y: 50 }"
:enter="{ opacity: 1, y: 0, transition: { delay: 200 } }"
class="mt-8 leading-relaxed text-lg blink max-w-11/12"
class="mt-8 font-poppins leading-relaxed text-lg blink max-w-11/12"
:steps="[
t('landing.first.typical.1'),
2000,
Expand Down
16 changes: 8 additions & 8 deletions packages/better-write-plugin-theme/css/fonts.css
Original file line number Diff line number Diff line change
@@ -1,41 +1,41 @@
@font-face {
font-family: Poppins;
src: url(fonts/Poppins-Thin.ttf);
src: url(/Poppins-Thin.ttf);
font-weight: 200;
}
@font-face {
font-family: Poppins;
src: url(fonts/Poppins-Light.ttf);
src: url(/Poppins-Light.ttf);
font-weight: 300;
}
@font-face {
font-family: Poppins;
src: url(fonts/Poppins-Regular.ttf);
src: url(/Poppins-Regular.ttf);
font-weight: normal;
}
@font-face {
font-family: Poppins;
src: url(fonts/Poppins-Bold.ttf);
src: url(/Poppins-Bold.ttf);
font-weight: bold;
}

@font-face {
font-family: Raleway;
src: url(fonts/Raleway-Thin.ttf);
src: url(/Raleway-Thin.ttf);
font-weight: 200;
}
@font-face {
font-family: Raleway;
src: url(fonts/Raleway-Light.ttf);
src: url(/Raleway-Light.ttf);
font-weight: 300;
}
@font-face {
font-family: Raleway;
src: url(fonts/Raleway-Regular.ttf);
src: url(/Raleway-Regular.ttf);
font-weight: normal;
}
@font-face {
font-family: Raleway;
src: url(fonts/Raleway-Bold.ttf);
src: url(/Raleway-Bold.ttf);
font-weight: bold;
}

0 comments on commit 2eb6933

Please sign in to comment.