diff options
| author | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
|---|---|---|
| committer | Yash <[email protected]> | 2024-04-11 04:52:44 +0000 |
| commit | 6dcc7d18c9be5e3a5e0a3ff60668424ee0158b4e (patch) | |
| tree | 179aa936536510cc707368fc7c330c4c7fbdc3f8 /apps/web/next.config.mjs | |
| parent | novel editor (diff) | |
| parent | save user ID with url to ensure that same website can be saved by users (diff) | |
| download | supermemory-new-ui.tar.xz supermemory-new-ui.zip | |
Merge branch 'main' of https://github.com/Dhravya/supermemory into new-uinew-ui
Diffstat (limited to 'apps/web/next.config.mjs')
| -rw-r--r-- | apps/web/next.config.mjs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/web/next.config.mjs b/apps/web/next.config.mjs index 3713aeab..b0c1476c 100644 --- a/apps/web/next.config.mjs +++ b/apps/web/next.config.mjs @@ -1,9 +1,9 @@ -import { setupDevPlatform } from '@cloudflare/next-on-pages/next-dev'; +import { setupDevPlatform } from "@cloudflare/next-on-pages/next-dev"; // Here we use the @cloudflare/next-on-pages next-dev module to allow us to use bindings during local development // (when running the application with `next dev`), for more information see: // https://github.com/cloudflare/next-on-pages/blob/5712c57ea7/internal-packages/next-dev/README.md -if (process.env.NODE_ENV === 'development') { +if (process.env.NODE_ENV === "development") { await setupDevPlatform(); } |