File tree Expand file tree Collapse file tree 10 files changed +24
-20
lines changed
Expand file tree Collapse file tree 10 files changed +24
-20
lines changed Original file line number Diff line number Diff line change 7878 path : ./out
7979
8080 deploy :
81+ # Sets permissions of the GITHUB_TOKEN to allow deployment to GitHub Pages
82+ permissions :
83+ contents : read
84+ pages : write
85+ id-token : write
8186 environment :
8287 name : github-pages
8388 url : ${{ steps.deployment.outputs.page_url }}
Original file line number Diff line number Diff line change 11_pagefind
22node_modules
33.next
4- .DS_Store
4+ .DS_Store
5+ out
6+ tsconfig.tsbuildinfo
Original file line number Diff line number Diff line change 1- # Welcome to the Paradym EUDI Docs!
1+ # Welcome
Original file line number Diff line number Diff line change @@ -16,7 +16,7 @@ const navbar = (
1616 // ... Your additional navbar options
1717 />
1818)
19- const footer = < Footer > MIT { new Date ( ) . getFullYear ( ) } © Nextra .</ Footer >
19+ const footer = < Footer > { new Date ( ) . getFullYear ( ) } © Paradym .</ Footer >
2020
2121export default async function RootLayout ( { children } : PropsWithChildren ) {
2222 return (
Original file line number Diff line number Diff line change 1+ import { useMDXComponents as getDocsMDXComponents } from 'nextra-theme-docs'
2+
3+ const docsComponents = getDocsMDXComponents ( )
4+
5+ export const useMDXComponents = ( components ) => ( {
6+ ...docsComponents ,
7+ ...components ,
8+ } )
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 11/// <reference types="next" />
22/// <reference types="next/image-types/global" />
3- import './.next/dev/ types/routes.d.ts'
3+ import './.next/types/routes.d.ts'
44
55// NOTE: This file should not be edited
66// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.
Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ export default withNextra({
1212 turbopack : {
1313 resolveAlias : {
1414 // Path to your `mdx-components` file with extension
15- 'next-mdx-import-source-file' : './mdx-components.tsx ' ,
15+ 'next-mdx-import-source-file' : './mdx-components.ts ' ,
1616 } ,
1717 } ,
1818 // ... Add regular Next.js options here
Original file line number Diff line number Diff line change 22 "name" : " paradym-eudi-docs" ,
33 "version" : " 1.0.0" ,
44 "description" : " " ,
5+ "type" : " module" ,
56 "scripts" : {
6- "dev" : " next --turbopack " ,
7- "build" : " next build" ,
7+ "dev" : " next --turbo " ,
8+ "build" : " next build --turbo " ,
89 "start" : " next start" ,
910 "postbuild" : " pagefind --site .next/server/app --output-path public/_pagefind" ,
1011 "types:check" : " tsc --noEmit" ,
Original file line number Diff line number Diff line change 99 "incremental" : true ,
1010 "module" : " esnext" ,
1111 "esModuleInterop" : true ,
12- "moduleResolution" : " node " ,
12+ "moduleResolution" : " bundler " ,
1313 "resolveJsonModule" : true ,
1414 "isolatedModules" : true ,
1515 "jsx" : " react-jsx" ,
You can’t perform that action at this time.
0 commit comments