diff options
author | 2022-07-22 10:32:36 -0500 | |
---|---|---|
committer | 2022-07-22 10:32:36 -0500 | |
commit | 7250e4e86da41e7c662afa4b67f7cefc7da15e69 (patch) | |
tree | 601206ba1e6604a2a3cf0cb7111738c85fbcc356 /packages/webapi/mod.d.ts | |
parent | 8b468ccccc0e47c3153175a3a9f3eadb191a8f0c (diff) | |
download | astro-7250e4e86da41e7c662afa4b67f7cefc7da15e69.tar.gz astro-7250e4e86da41e7c662afa4b67f7cefc7da15e69.tar.zst astro-7250e4e86da41e7c662afa4b67f7cefc7da15e69.zip |
Add `.html` support (#3867)
* feat: add html package
* feat: support assets in HTML
* feat(html): upgrade html integration
* feat(html): add `@astrojs/html` integration
* feat(html): add html support to astro core
* test(html): update html tests with package.json files
* chore: add changeset
* fix: remove import cycle
* chore: fix types
* refactor: remove @astrojs/html, add to core
* chore: update types for `*.html`
* fix: move *.html to astro/env
Co-authored-by: Nate Moore <nate@astro.build>
Diffstat (limited to '')
-rw-r--r-- | packages/webapi/mod.d.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/webapi/mod.d.ts b/packages/webapi/mod.d.ts index a3c49dc5c..7150edbe7 100644 --- a/packages/webapi/mod.d.ts +++ b/packages/webapi/mod.d.ts @@ -9,4 +9,4 @@ interface PolyfillOptions { override?: Record<string, { (...args: any[]): any; }>; -}
\ No newline at end of file +} |