Skip to content

Commit ea67f57

Browse files
committed
Fix some paths
1 parent 174c902 commit ea67f57

File tree

3 files changed

+6
-9
lines changed

3 files changed

+6
-9
lines changed

pages/docs/manual/latest/build-configuration-schema.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
import dynamic from "next/dynamic";
22

3-
const Docson = dynamic(() => import("components/Docson").then((comp) => {
3+
const Docson = dynamic(() => import("src/components/Docson").then((comp) => {
44
return comp.make;
55
}), {
66
ssr: false,

src/components/Docson.js

Lines changed: 3 additions & 6 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/components/Docson.res

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ Next's dynamic import mechanism.
1111
1212
*/
1313

14-
%%raw(`import "../styles/docson.css";`)
14+
%%raw(`import "styles/docson.css";`)
1515

1616
type t
1717

@@ -22,7 +22,7 @@ type t
2222
@module("docson") @scope("default")
2323
external doc: (string, Js.Json.t, option<string>, string) => unit = "doc"
2424

25-
@module("../index_data/build-schema.json") external schema: Js.Json.t = "default"
25+
@module("index_data/build-schema.json") external schema: Js.Json.t = "default"
2626

2727
@react.component
2828
let make = () => {

0 commit comments

Comments
 (0)