File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ export async function createPages({ actions, graphql }: CreatePagesArgs) {
6060 for ( const project of data . projects . nodes ) {
6161 if ( ! project . frontmatter ?. slug )
6262 throw new Error (
63- `プロジェクト: ${ project . internal . contentFilePath } の slug が設定されていません。`
63+ `プロジェクト: ${ project . internal . contentFilePath } の slug が設定されていません。` ,
6464 ) ;
6565 actions . createPage ( {
6666 path : `/projects/${ project . frontmatter . slug } ` ,
@@ -72,7 +72,7 @@ export async function createPages({ actions, graphql }: CreatePagesArgs) {
7272 for ( const article of data . articles . nodes ) {
7373 if ( ! article . frontmatter ?. slug )
7474 throw new Error (
75- `投稿: ${ article . internal . contentFilePath } の slug が設定されていません。`
75+ `投稿: ${ article . internal . contentFilePath } の slug が設定されていません。` ,
7676 ) ;
7777 actions . createPage ( {
7878 path : `/articles/${ article . frontmatter . slug } ` ,
@@ -84,7 +84,7 @@ export async function createPages({ actions, graphql }: CreatePagesArgs) {
8484 for ( const member of data . members . nodes ) {
8585 if ( ! member . frontmatter ?. slug )
8686 throw new Error (
87- `投稿: ${ member . internal . contentFilePath } の slug が設定されていません。`
87+ `投稿: ${ member . internal . contentFilePath } の slug が設定されていません。` ,
8888 ) ;
8989 actions . createPage ( {
9090 path : `/members/${ member . frontmatter . slug } ` ,
You can’t perform that action at this time.
0 commit comments