Skip to content

Commit

Permalink
Hot
Browse files Browse the repository at this point in the history
  • Loading branch information
tajbowness committed Jul 22, 2024
1 parent f2d9747 commit db0dc5d
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion app/root.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import "../styles.scss"
import { useLoaderData } from "@remix-run/react"

export const clientLoader = async ({ request }) => {
return request.url.split('Fontaine/')[1]
return request.url.split('fontaine/')[1]
}

export function Layout({ children }) {
Expand Down
4 changes: 2 additions & 2 deletions vite.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,11 @@ import { vitePlugin as remix } from "@remix-run/dev";
import { defineConfig } from "vite";

export default defineConfig({
base: '/Fontaine/',
base: '/fontaine/',
plugins: [
remix({
ssr: false,
basename: '/Fontaine/',
basename: '/fontaine/',
future: {
v3_fetcherPersist: true,
v3_relativeSplatPath: true,
Expand Down

0 comments on commit db0dc5d

Please sign in to comment.