Files
supabase/apps/docs/scripts/utils/dotenv.js
Charis 4b9662b21e ci(docs lint): fix commenting workflow (#36062)
* ci(docs): fix sync process

GraphQL codegen needs to be run before sync because otherwise the types
are missing. Missed this in local testing because codegen had already
been run for other reasons.

* fix(troubleshooting sync): unresolved import

* ci(docs lint): fix commenting workflow
2025-06-05 13:16:36 -04:00

9 lines
205 B
JavaScript

// Must be a .js not a .ts so it can be imported outside of the scripts
// directory without having to compile
import dotenv from 'dotenv'
dotenv.config({ path: '.env.local' })
export default undefined