mirror of
https://github.com/supabase/supabase.git
synced 2026-05-07 01:10:15 -04:00
33b9e1ed29
Scripts currently use CJS, which is causing a bit of a mess when trying to use shared utilities from the app. Converting everything to ESM so there are fewer conflicts when adding new scripts going forward.
63 lines
1.1 KiB
JavaScript
63 lines
1.1 KiB
JavaScript
export default [
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'avatars.githubusercontent.com',
|
|
port: '',
|
|
pathname: '/u/*',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'github.com',
|
|
port: '',
|
|
pathname: '**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'supabase.github.io',
|
|
port: '',
|
|
pathname: '**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'user-images.githubusercontent.com',
|
|
port: '',
|
|
pathname: '**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'raw.githubusercontent.com',
|
|
port: '',
|
|
pathname: '**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'weweb-changelog.ghost.io',
|
|
port: '',
|
|
pathname: '**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'img.youtube.com',
|
|
port: '',
|
|
pathname: '/vi/**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'archbee-image-uploads.s3.amazonaws.com',
|
|
port: '',
|
|
pathname: '*',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'obuldanrptloktxcffvn.supabase.co',
|
|
port: '',
|
|
pathname: '**',
|
|
},
|
|
{
|
|
protocol: 'https',
|
|
hostname: 'xguihxuzqibwxjnimxev.supabase.co',
|
|
port: '',
|
|
pathname: '**',
|
|
},
|
|
]
|