create-puck-app 0.15.1-canary.fb9aa4e → 0.16.0-canary.2bef00b
Sign up to get free protection for your applications and to get access to all the features.
package/package.json
CHANGED
Binary file
|
@@ -9,8 +9,11 @@ import {
|
|
9
9
|
ScrollRestoration,
|
10
10
|
} from "@remix-run/react";
|
11
11
|
|
12
|
+
import styles from "~/styles/shared.css";
|
13
|
+
|
12
14
|
export const links: LinksFunction = () => [
|
13
15
|
...(cssBundleHref ? [{ rel: "stylesheet", href: cssBundleHref }] : []),
|
16
|
+
{ rel: "stylesheet", href: styles },
|
14
17
|
];
|
15
18
|
|
16
19
|
export default function App() {
|