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 b334074 commit dc42894Copy full SHA for dc42894
src/hooks/useCDN.ts
@@ -33,7 +33,11 @@ export const useCDN = () => {
33
34
const ruffleJSPath = () => {
35
return import.meta.env.VITE_LITE === "true"
36
- ? npm(packageJson.name, packageJson.version, "dist/static/ruffle/ruffle.js")
+ ? npm(
37
+ packageJson.name,
38
+ packageJson.version,
39
+ "dist/static/ruffle/ruffle.js",
40
+ )
41
: `${static_path}/ruffle/ruffle.js`
42
}
43
0 commit comments