Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion apps/docs/content/guides/database/import-data.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ If you're importing a large dataset or importing data into production, plan ahea
Supabase dashboard provides a user-friendly way to import data. However, for very large datasets, this method may not be the most efficient choice, given the size limit is 100MB. It's generally better suited for smaller datasets and quick data imports. Consider using alternative methods like pgloader for large-scale data imports.

1. Navigate to the relevant table in the [Table Editor.](/dashboard/project/_/editor)
2. Click on “Insert” then choose "Import Data from CSV" and follow the on-screen instructions to upload your CSV file.
2. Click on _+ New table_ (for new, empty projects) or _Insert_ (for existing tables), then choose _Import Data from CSV_ and follow the on-screen instructions to upload your CSV file.

### Option 2: Bulk import using pgloader

Expand Down
2 changes: 1 addition & 1 deletion apps/docs/content/guides/platform/ssl-enforcement.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ export SUPABASE_ACCESS_TOKEN="your-access-token"
export PROJECT_REF="your-project-ref"

# Get current SSL enforcement status
curl -X GET "https://api.supabase.com/v1/projects/$PROJECT_REF/ssl-enforceemnt" \
curl -X GET "https://api.supabase.com/v1/projects/$PROJECT_REF/ssl-enforcement" \
-H "Authorization: Bearer $SUPABASE_ACCESS_TOKEN"

# Enable SSL enforcement
Expand Down
3 changes: 2 additions & 1 deletion apps/studio/next.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -531,7 +531,8 @@ const nextConfig = {
pagesBufferLength: 100,
},
typescript: {
// Typechecking is run via GitHub Action only for efficiency.
// Typechecking is run via GitHub Action only for efficiency
// For production, we run typechecks separate from the build command (pnpm typecheck && pnpm build)
ignoreBuildErrors: true,
},
eslint: {
Expand Down
Loading