Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix logo import #12

Merged
merged 1 commit into from
Nov 22, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading