File tree Expand file tree Collapse file tree 5 files changed +4
-4
lines changed
Expand file tree Collapse file tree 5 files changed +4
-4
lines changed File renamed without changes.
Original file line number Diff line number Diff line change 11import fs from "node:fs/promises" ;
2- import { S_ASSET } from "./config.mjs" ;
2+ import { S_ASSET } from "../src /config.mjs" ;
33
44export const asset = async ( ) =>
55 [ ...( await Array . fromAsync ( await fs . glob ( S_ASSET ) ) ) ] . map (
Original file line number Diff line number Diff line change 1- import { CONFIGS } from "./config.mjs" ;
1+ import { CONFIGS } from "../src /config.mjs" ;
22
33export const database = async ( jsons ) => {
44 const posts = jsons
Original file line number Diff line number Diff line change @@ -14,7 +14,7 @@ import {
1414 TEMPLATE ,
1515 D_POST ,
1616 D_PAGE ,
17- } from "./config.mjs" ;
17+ } from "../src /config.mjs" ;
1818
1919const error = ( error ) => {
2020 console . error ( error ) ;
Original file line number Diff line number Diff line change 11import fs from "node:fs/promises" ;
2- import { S_MD } from "./config.mjs" ;
2+ import { S_MD } from "../src /config.mjs" ;
33
44// 決めうちのデータ読み込み処理
55const getJsonFromMarkdown = ( filestring ) => {
You can’t perform that action at this time.
0 commit comments