mirror of
https://github.com/d3/d3.git
synced 2025-12-08 19:46:24 +00:00
9 lines
165 B
JavaScript
9 lines
165 B
JavaScript
import fs from "node:fs";
|
|
|
|
export default {
|
|
watch: ["../public/data/volcano.json"],
|
|
load([file]) {
|
|
return JSON.parse(fs.readFileSync(file, "utf-8"));
|
|
}
|
|
};
|