create-puck-app 0.16.0-canary.0c7fc83 → 0.16.0-canary.2bef00b
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
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() {
|