mirror of
https://github.com/seigler/drawing-prompt
synced 2025-07-25 08:46:12 +00:00
unsatisfactor fix to css asset paths
This commit is contained in:
parent
a341739431
commit
34cb1b9405
3 changed files with 5 additions and 5 deletions
|
@ -2,9 +2,9 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="UTF-8" />
|
||||
|
||||
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||||
<title>drawing-prompt + TS</title>
|
||||
<title>Drawing Prompt</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="root"></div>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
|
||||
@font-face {
|
||||
font-family: 'helsinkiregular';
|
||||
src: url('helsinki-webfont.woff') format('woff');
|
||||
src: url('../helsinki-webfont.woff') format('woff');
|
||||
font-weight: normal;
|
||||
font-style: normal;
|
||||
}
|
||||
|
@ -25,7 +25,7 @@
|
|||
margin: auto;
|
||||
height: min(100vh, 50rem);
|
||||
background-color: #FFF;
|
||||
mask-image: url('brush-stroke.png');
|
||||
mask-image: url('../brush-stroke.png');
|
||||
mask-size: cover;
|
||||
mask-repeat: no-repeat;
|
||||
mask-position: center;
|
||||
|
|
|
@ -4,10 +4,10 @@ import solid from 'vite-plugin-solid'
|
|||
|
||||
// https://vitejs.dev/config/
|
||||
export default defineConfig({
|
||||
base: "/drawing-prompt/",
|
||||
plugins: [solid(), VitePWA({
|
||||
registerType: 'autoUpdate',
|
||||
injectRegister: false,
|
||||
base: "/drawing-prompt/",
|
||||
|
||||
pwaAssets: {
|
||||
disabled: false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue