aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore2
-rw-r--r--apps/web/globals.css2
-rw-r--r--apps/web/tsconfig.json36
-rw-r--r--apps/web/wrangler.jsonc58
4 files changed, 50 insertions, 48 deletions
diff --git a/.gitignore b/.gitignore
index 96fab4fe..057f6262 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,4 +1,6 @@
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
+.open-next/
+.sentryclirc
# Dependencies
node_modules
diff --git a/apps/web/globals.css b/apps/web/globals.css
index f06b87d8..3571db7d 100644
--- a/apps/web/globals.css
+++ b/apps/web/globals.css
@@ -1,2 +1,2 @@
-@import 'tailwindcss';
+@import "tailwindcss";
@plugin "@tailwindcss/typography";
diff --git a/apps/web/tsconfig.json b/apps/web/tsconfig.json
index bdd64662..67626bbc 100644
--- a/apps/web/tsconfig.json
+++ b/apps/web/tsconfig.json
@@ -1,20 +1,20 @@
{
- "compilerOptions": {
- "incremental": true,
- "jsx": "preserve",
- "paths": {
- "@/*": ["./*"],
- "@ui/*": ["../../packages/ui/*"],
- "@lib/*": ["../../packages/lib/*"],
- "@hooks/*": ["../../packages/hooks/*"]
- },
- "plugins": [
- {
- "name": "next"
- }
- ]
- },
- "exclude": ["node_modules"],
- "extends": "@total-typescript/tsconfig/bundler/dom/app",
- "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
+ "compilerOptions": {
+ "incremental": true,
+ "jsx": "preserve",
+ "paths": {
+ "@/*": ["./*"],
+ "@ui/*": ["../../packages/ui/*"],
+ "@lib/*": ["../../packages/lib/*"],
+ "@hooks/*": ["../../packages/hooks/*"]
+ },
+ "plugins": [
+ {
+ "name": "next"
+ }
+ ]
+ },
+ "exclude": ["node_modules"],
+ "extends": "@total-typescript/tsconfig/bundler/dom/app",
+ "include": ["next-env.d.ts", "**/*.ts", "**/*.tsx", ".next/types/**/*.ts"]
}
diff --git a/apps/web/wrangler.jsonc b/apps/web/wrangler.jsonc
index 674f6270..dadfdf63 100644
--- a/apps/web/wrangler.jsonc
+++ b/apps/web/wrangler.jsonc
@@ -1,31 +1,31 @@
{
- "$schema": "node_modules/wrangler/config-schema.json",
- "main": ".open-next/worker.js",
- "name": "supermemory-app",
- "compatibility_date": "2024-12-30",
- "compatibility_flags": [
- // Enable Node.js API
- // see https://developers.cloudflare.com/workers/configuration/compatibility-flags/#nodejs-compatibility-flag
- "nodejs_compat",
- // Allow to fetch URLs in your app
- // see https://developers.cloudflare.com/workers/configuration/compatibility-flags/#global-fetch-strictly-public
- "global_fetch_strictly_public"
- ],
- "assets": {
- "directory": ".open-next/assets",
- "binding": "ASSETS"
- },
- "services": [
- {
- "binding": "WORKER_SELF_REFERENCE",
- // The service should match the "name" of your worker
- "service": "supermemory-app"
- }
- ],
- "r2_buckets": [
- {
- "binding": "NEXT_INC_CACHE_R2_BUCKET",
- "bucket_name": "supermemory-console-cache"
- }
- ]
+ "$schema": "node_modules/wrangler/config-schema.json",
+ "main": ".open-next/worker.js",
+ "name": "supermemory-app",
+ "compatibility_date": "2024-12-30",
+ "compatibility_flags": [
+ // Enable Node.js API
+ // see https://developers.cloudflare.com/workers/configuration/compatibility-flags/#nodejs-compatibility-flag
+ "nodejs_compat",
+ // Allow to fetch URLs in your app
+ // see https://developers.cloudflare.com/workers/configuration/compatibility-flags/#global-fetch-strictly-public
+ "global_fetch_strictly_public",
+ ],
+ "assets": {
+ "directory": ".open-next/assets",
+ "binding": "ASSETS",
+ },
+ "services": [
+ {
+ "binding": "WORKER_SELF_REFERENCE",
+ // The service should match the "name" of your worker
+ "service": "supermemory-app",
+ },
+ ],
+ "r2_buckets": [
+ {
+ "binding": "NEXT_INC_CACHE_R2_BUCKET",
+ "bucket_name": "supermemory-console-cache",
+ },
+ ],
}