mirror of
https://github.com/BradNut/umami
synced 2025-09-08 17:40:29 +00:00
13 lines
339 B
JavaScript
13 lines
339 B
JavaScript
// Next.js API route support: https://nextjs.org/docs/api-routes/introduction
|
|
|
|
import dirTree from 'directory-tree';
|
|
|
|
export default function handler(req, res) {
|
|
res.status(200).json({
|
|
filename: __filename,
|
|
dirname: __dirname,
|
|
cwd: process.cwd(),
|
|
files: dirTree(process.cwd()),
|
|
rootFiles: dirTree(__dirname),
|
|
});
|
|
}
|