Spaces:
Sleeping
Sleeping
Jon Taylor
commited on
Commit
•
3fffa74
1
Parent(s):
c921185
test deps
Browse files- frontend/app/page.js +1 -5
- frontend/next.config.js +1 -0
frontend/app/page.js
CHANGED
@@ -14,9 +14,5 @@ export default function Home() {
|
|
14 |
setDaily(Daily.createCallObject());
|
15 |
}, [daily]);
|
16 |
|
17 |
-
return
|
18 |
-
<DailyProvider callObject={daily}>
|
19 |
-
<Call />
|
20 |
-
</DailyProvider>
|
21 |
-
);
|
22 |
}
|
|
|
14 |
setDaily(Daily.createCallObject());
|
15 |
}, [daily]);
|
16 |
|
17 |
+
return <div>Hello</div>;
|
|
|
|
|
|
|
|
|
18 |
}
|
frontend/next.config.js
CHANGED
@@ -1,6 +1,7 @@
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
reactStrictMode: false,
|
|
|
4 |
};
|
5 |
|
6 |
module.exports = nextConfig;
|
|
|
1 |
/** @type {import('next').NextConfig} */
|
2 |
const nextConfig = {
|
3 |
reactStrictMode: false,
|
4 |
+
output: "export",
|
5 |
};
|
6 |
|
7 |
module.exports = nextConfig;
|