diff options
author | 2021-05-07 10:42:48 -0600 | |
---|---|---|
committer | 2021-05-07 10:42:48 -0600 | |
commit | 8f2a58534c9c3939d14170dc839118707355e798 (patch) | |
tree | f82216e7366964e746756bba0d9492395a93f87a | |
parent | 820012ea16ed44de2293fda09edde14d32514098 (diff) | |
download | astro-8f2a58534c9c3939d14170dc839118707355e798.tar.gz astro-8f2a58534c9c3939d14170dc839118707355e798.tar.zst astro-8f2a58534c9c3939d14170dc839118707355e798.zip |
Bugfix: fix build (#184)
Diffstat (limited to '')
-rw-r--r-- | packages/astro/src/build/util.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/packages/astro/src/build/util.ts b/packages/astro/src/build/util.ts index c22216388..afd9f5b32 100644 --- a/packages/astro/src/build/util.ts +++ b/packages/astro/src/build/util.ts @@ -1,4 +1,5 @@ import type { AstroConfig } from '../@types/astro'; +import { performance } from 'perf_hooks'; import path from 'path'; import { fileURLToPath, URL } from 'url'; |