diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-28 23:52:50 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-28 23:54:31 +0900 |
| commit | f65ec15aaf8fc46685c39d721cab82f64baead8c (patch) | |
| tree | a1b64e7db236698976c6436a1b0cd84cd47f53e4 /vhosts/blog/nuldoc-src/config.ts | |
| parent | a5e9d98602084e1e7a98d2bf78699fd157ea2c78 (diff) | |
| download | nsfisis.dev-f65ec15aaf8fc46685c39d721cab82f64baead8c.tar.gz nsfisis.dev-f65ec15aaf8fc46685c39d721cab82f64baead8c.tar.zst nsfisis.dev-f65ec15aaf8fc46685c39d721cab82f64baead8c.zip | |
refactor(blog/nuldoc): migrate Deno standard library to JSR
Diffstat (limited to 'vhosts/blog/nuldoc-src/config.ts')
| -rw-r--r-- | vhosts/blog/nuldoc-src/config.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/vhosts/blog/nuldoc-src/config.ts b/vhosts/blog/nuldoc-src/config.ts index 21a620a7..5a07896f 100644 --- a/vhosts/blog/nuldoc-src/config.ts +++ b/vhosts/blog/nuldoc-src/config.ts @@ -1,5 +1,5 @@ -import { join } from "std/path/mod.ts"; -import { parse as parseToml } from "std/toml/mod.ts"; +import { join } from "@std/path"; +import { parse as parseToml } from "@std/toml"; import { z } from "zod/mod.ts"; const ConfigSchema = z.object({ |
