mirror of
https://github.com/transloadit/uppy.git
synced 2026-07-17 16:50:22 +00:00
- This PR upgrades `biome` from `2.0.5` -> `2.1.2` and adds two new rules - [noUnusedImports](https://biomejs.dev/linter/rules/no-unused-private-class-members) ( we already had suppressions for this rule in code, but the rule itself was never enabled in the config ) - [noUnusedPrivateClassMembers](https://biomejs.dev/linter/rules/no-unused-private-class-members/) - remove stale suppressions. - remove stale code. --------- Co-authored-by: Mikael Finstad <finstaden@gmail.com>
18 lines
503 B
HTML
18 lines
503 B
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="utf-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1" />
|
|
<title>Uppy DigitalOcean Example</title>
|
|
</head>
|
|
<body>
|
|
<h1>DigitalOcean Spaces</h1>
|
|
<p>
|
|
Using the <a href="https://uppy.io/docs/aws-s3">AwsS3</a> plugin to upload
|
|
to DigitalOcean Spaces ✌️
|
|
</p>
|
|
|
|
<noscript>This app requires JavaScript.</noscript>
|
|
<script src="./main.js" type="module"></script>
|
|
</body>
|
|
</html>
|