Adds missing required main file for EE (#2146)
* Adds missing required main file * Lint fixes
This commit is contained in:
parent
4083ebd591
commit
b25e6c25aa
3 changed files with 4 additions and 2 deletions
|
@ -11,10 +11,10 @@ export default function Error500() {
|
||||||
</Head>
|
</Head>
|
||||||
<div className="m-auto text-center">
|
<div className="m-auto text-center">
|
||||||
<h1 className="font-cal text-[250px] text-gray-900">
|
<h1 className="font-cal text-[250px] text-gray-900">
|
||||||
5<img src="/error.svg" className="inline -mt-10 w-60" />0
|
5<img src="/error.svg" className="-mt-10 inline w-60" />0
|
||||||
</h1>
|
</h1>
|
||||||
<h2 className="mb-2 -mt-16 text-3xl text-gray-600">It's not you, it's us.</h2>
|
<h2 className="mb-2 -mt-16 text-3xl text-gray-600">It's not you, it's us.</h2>
|
||||||
<p className="max-w-2xl mb-4 text-gray-500">
|
<p className="mb-4 max-w-2xl text-gray-500">
|
||||||
Something went wrong on our end. Get in touch with our support team, and we’ll get it fixed right
|
Something went wrong on our end. Get in touch with our support team, and we’ll get it fixed right
|
||||||
away for you.
|
away for you.
|
||||||
</p>
|
</p>
|
||||||
|
|
1
packages/ee/index.ts
Normal file
1
packages/ee/index.ts
Normal file
|
@ -0,0 +1 @@
|
||||||
|
export * from "lib/core/checkPremiumUsername";
|
|
@ -4,6 +4,7 @@
|
||||||
"version": "0.0.0",
|
"version": "0.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"license": "AGPLv3",
|
"license": "AGPLv3",
|
||||||
|
"main": "./index.ts",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"clean": "rm -rf .turbo && rm -rf node_modules"
|
"clean": "rm -rf .turbo && rm -rf node_modules"
|
||||||
},
|
},
|
||||||
|
|
Loading…
Reference in a new issue