diff options
author | 2022-02-14 12:48:52 -0500 | |
---|---|---|
committer | 2022-02-14 12:48:52 -0500 | |
commit | ba5e2b5e6c20207955991775dc4aa8879331542c (patch) | |
tree | 28e68347035a534f8b56991ede570dfcf830cb01 /scripts | |
parent | 61f438fdcbab7163bc3399e623a80d283e018371 (diff) | |
download | astro-ba5e2b5e6c20207955991775dc4aa8879331542c.tar.gz astro-ba5e2b5e6c20207955991775dc4aa8879331542c.tar.zst astro-ba5e2b5e6c20207955991775dc4aa8879331542c.zip |
Flagged SSR support (#2548)
* Checkpoint, basics are working
* Add the `--experimental-ssr` flag
* Adds the changeset
* Fixes population of getStaticPaths results
* Pass through the imported module
* Route manifest test
* Fix remaining tests
* Fix remaining tests
* Copy server assets over
* Fix types
* Allowing passing in the request to the Node version of App
* Improve the example app
* Gets CI to pass
Diffstat (limited to 'scripts')
-rw-r--r-- | scripts/smoke/index.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/scripts/smoke/index.js b/scripts/smoke/index.js index 8c3f27ae9..8a0cf2242 100644 --- a/scripts/smoke/index.js +++ b/scripts/smoke/index.js @@ -3,6 +3,7 @@ import fs from 'fs'; import { execa } from 'execa'; import { fileURLToPath } from 'url'; +import path from 'path'; // NOTE: Only needed for Windows, due to a Turbo bug. // Once Turbo works on Windows, we can remove this script |