Skip to content

Commit 4951eac

Browse files
committed
Remove ZEIT from homepage, fix references to Vercel
1 parent e1dd560 commit 4951eac

File tree

7 files changed

+5
-22
lines changed

7 files changed

+5
-22
lines changed

api/migrations/20171129221050-curated-content-table-creation.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,6 @@ exports.up = function(r, conn) {
3535
{
3636
type: 'development-communities',
3737
data: [
38-
'zeit',
3938
'realm',
4039
'expo',
4140
'compositor',

docs/deployments.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22

33
# Deployments
44

5-
We use [`now`](https://now.sh) by Zeit for all of our deployments.
5+
We use [`now`](https://now.sh) by Vercel for all of our deployments.
66

77
### Installation
88

9-
We recommend installing the [now desktop app](http://zeit.co/download) as it'll keep the command line tool up to date automatically!
9+
We recommend installing the [now desktop app](http://vercel.co/download) as it'll keep the command line tool up to date automatically!
1010

1111
If you'd rather not install an app (or are using Windows Substem for Linux) you can also install now with npm:
1212

@@ -20,7 +20,7 @@ All our workers are aliased to `<workername>.workers.spectrum.chat`, with the on
2020

2121
#### Path aliases
2222

23-
[Now's path alias feature](https://zeit.co/docs/features/path-aliases) takes care of routing requests to the right workers. To see our current production aliases check the `rules.json` file in the root of the project.
23+
[Now's path alias feature](https://vercel.co/docs/features/path-aliases) takes care of routing requests to the right workers. To see our current production aliases check the `rules.json` file in the root of the project.
2424

2525
To deploy new rules, simply run the following command: (assuming `rules.json` has the changes)
2626

hyperion/renderer/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ const renderer = (req: express$Request, res: express$Response) => {
134134
const { helmet } = helmetContext;
135135
debug('write header');
136136
// Use now's CDN to cache the rendered pages in CloudFlare for half an hour
137-
// Ref https://zeit.co/docs/features/cdn
137+
// Ref https://vercel.co/docs/features/cdn
138138
if (!req.user) {
139139
res.setHeader(
140140
'Cache-Control',

public/img/logos/zeit.svg

Lines changed: 0 additions & 12 deletions
This file was deleted.

shared/middlewares/security.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ function securityMiddleware(
121121
// Set to true if you only want browsers to report errors, not block them.
122122
reportOnly:
123123
process.env.NODE_ENV === 'development' || process.env.FORCE_DEV || false,
124-
// Necessary because of Zeit CDN usage
124+
// Necessary because of Vercel CDN usage
125125
browserSniff: false,
126126
};
127127

src/views/pages/components/logos.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,5 +29,3 @@ export const NodeLogo = () => <Logo src="/img/logos/nodejs.svg" alt="" />;
2929
export const RealmLogo = () => <Logo src="/img/logos/realm.svg" alt="" />;
3030

3131
export const SketchLogo = () => <Logo src="/img/logos/sketch.svg" alt="" />;
32-
33-
export const ZeitLogo = () => <Logo src="/img/logos/zeit.svg" alt="" />;

src/views/pages/view.js

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,6 @@ import {
2020
ExpoLogo,
2121
FigmaLogo,
2222
InvisionLogo,
23-
ZeitLogo,
2423
SketchLogo,
2524
RealmLogo,
2625
NodeLogo,
@@ -263,7 +262,6 @@ export const Centralized = () => {
263262
<FigmaLogo />
264263
<BootstrapLogo />
265264
<ExpoLogo />
266-
<ZeitLogo />
267265
<SketchLogo />
268266
<AbstractLogo />
269267
<RealmLogo />

0 commit comments

Comments
 (0)