create-puck-app 0.13.0-canary.d636605 → 0.13.0-canary.d7540e3
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
@@ -33,7 +33,7 @@ To adopt this recipe you will need to:
|
|
33
33
|
|
34
34
|
- **IMPORTANT** Add authentication to `/edit` routes. This can be done by modifying the example routes `/app/routes/_index.tsx` and `/app/routes/edit.tsx` or the example model in `/app/models/page.server.ts`. **If you don't do this, Puck will be completely public.**
|
35
35
|
- Integrate your database into the API calls in `/app/models/page.server.ts`
|
36
|
-
- Implement a custom puck configuration in
|
36
|
+
- Implement a custom puck configuration in `/app/puck.config.tsx`
|
37
37
|
|
38
38
|
By default, this recipe will have JavaScript enable on all routes - like a usual react app. If you know that your Puck content doesn't need react, then you can disable JS uncommenting the relevant code in `/app/root.tsx` and the example route `/app/routes/_index.tsx`. Check the network tab for no JS downloads, and verify that the page still works.
|
39
39
|
|
@@ -3,7 +3,7 @@ import type { LoaderFunctionArgs, MetaFunction } from "@remix-run/node";
|
|
3
3
|
import { json } from "@remix-run/node";
|
4
4
|
import { useLoaderData } from "@remix-run/react";
|
5
5
|
|
6
|
-
import puckConfig from "
|
6
|
+
import puckConfig from "~/puck.config";
|
7
7
|
import { getPage } from "~/models/page.server";
|
8
8
|
|
9
9
|
export const loader = async ({ params }: LoaderFunctionArgs) => {
|
@@ -10,7 +10,7 @@ import { json } from "@remix-run/node";
|
|
10
10
|
import { useLoaderData, useSubmit } from "@remix-run/react";
|
11
11
|
import invariant from "tiny-invariant";
|
12
12
|
|
13
|
-
import puckConfig from "
|
13
|
+
import puckConfig from "~/puck.config";
|
14
14
|
import { getPage, setPage } from "~/models/page.server";
|
15
15
|
|
16
16
|
export const action = async ({ params, request }: ActionFunctionArgs) => {
|
File without changes
|