We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 36c99a6 commit 9842b8dCopy full SHA for 9842b8d
CHANGELOG.md
@@ -1 +1,2 @@
1
- Fix Next.js dynamic and static OG images. (#6592)
2
+- Address a regression introduced in 13.0.1 when emulating Vite applications. (#6599)
src/frameworks/vite/index.ts
@@ -3,7 +3,7 @@ import { spawn } from "cross-spawn";
3
import { existsSync } from "fs";
4
import { copy, pathExists } from "fs-extra";
5
import { join } from "path";
6
-import stripAnsi from "strip-ansi";
+const stripAnsi = require("strip-ansi");
7
import { FrameworkType, SupportLevel } from "../interfaces";
8
import { promptOnce } from "../../prompt";
9
import {
0 commit comments