changeset 2040:d94b2d25abcd

fix homePage using web/style.css
author drewp@bigasterisk.com
date Mon, 09 May 2022 21:38:04 -0700
parents 1103b2437e6d
children d8bac44781d4
files light9/homepage/index.html light9/homepage/vite.config.ts
diffstat 2 files changed, 2 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/light9/homepage/index.html	Mon May 09 21:37:46 2022 -0700
+++ b/light9/homepage/index.html	Mon May 09 21:38:04 2022 -0700
@@ -3,7 +3,7 @@
   <head>
     <title>light9 home</title>
     <meta charset="utf-8" />
-    <link rel="stylesheet" href="@fs/my/proj/light9/light9/web/style.css">
+    <link rel="stylesheet" href="style.css">
     <script type="module" src="./ServiceButtonRow.ts"></script>
   </head>
   <body>
--- a/light9/homepage/vite.config.ts	Mon May 09 21:37:46 2022 -0700
+++ b/light9/homepage/vite.config.ts	Mon May 09 21:38:04 2022 -0700
@@ -2,6 +2,7 @@
 
 export default defineConfig({
   root: "./light9/homepage",
+  publicDir: "../web",
   server: {
     host: "0.0.0.0",
     strictPort: true,