Skip to content

Commit

Permalink
Merge pull request #12 from MarkE16/logo_import
Browse files Browse the repository at this point in the history
fix logo import
  • Loading branch information
MarkE16 authored Nov 22, 2024
2 parents c62d509 + c52b398 commit 774aafb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions renderer/_default.page.server.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ export const passToClient = ["pageProps", "urlPathname"];
import ReactDOMServer from "react-dom/server";
import { PageShell } from "./PageShell";
import { escapeInject, dangerouslySkipEscape } from "vite-plugin-ssr/server";
import logo from "../assets/logo.jpg";
import logo from "../assets/icons/IdeaDrawnNewLogo.png";
import { Provider } from "react-redux";
import { createStore } from "../state/store";
import type { PageContextServer } from "./types";
Expand All @@ -29,7 +29,7 @@ async function render(pageContext: PageContextServer) {

// See https://vite-plugin-ssr.com/head
const { documentProps } = pageContext.exports;
const title = (documentProps && documentProps.title) || "Vite SSR app";
const title = (documentProps && documentProps.title) || "Live Canvas";
const desc =
(documentProps && documentProps.description) ||
"App using Vite + vite-plugin-ssr";
Expand Down

0 comments on commit 774aafb

Please sign in to comment.