denoland / dotland

[Archived] deno.land website
https://deno.land
MIT License
957 stars 626 forks source link

Allow CORS requests to unversioned urls #1993

Closed tjjfvi closed 2 years ago

tjjfvi commented 2 years ago
import "https://deno.land/std@0.121.0/examples/welcome.ts"; // ✅  Imports ok
import "https://deno.land/x/lodash@4.17.19/lodash.js";      // ✅  Imports ok
import "https://deno.land/std/examples/welcome.ts";         // ❌  CORS error
import "https://deno.land/x/lodash/lodash.js";              // ❌  CORS error

Related: #1792

lucacasonato commented 2 years ago

Fixed now. Thanks for reporting @tjjfvi!