Skip to content

Commit

Permalink
Revert assets2 change
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanFlurry committed Aug 4, 2023
1 parent 5cb8d10 commit 57234c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/elements/feed/horizontal-feed.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ export default class HorizontalFeed extends LitElement {
identityId: '',
displayName: ['Nicholas Kissel', 'Nathan Flurry', 'Zack'][Math.round(Math.random() * 2)],
accountNumber: 1234,
avatarUrl: `https://assets2.rivet.gg/avatars/avatar-${Math.round(Math.random() * 7)}.png`,
avatarUrl: `https://assets.rivet.gg/avatars/avatar-${Math.round(Math.random() * 7)}.png`,
presence: {
updateTs: new Date(0),
status: api.identity.IdentityStatus.ONLINE,
Expand Down
2 changes: 1 addition & 1 deletion src/elements/pages/game.ts
Original file line number Diff line number Diff line change
Expand Up @@ -377,7 +377,7 @@ export default class GamePage extends LitElement {
identityId: '',
displayName: ['Nicholas Kissel', 'Nathan Flurry', 'Zack'][Math.round(Math.random() * 2)],
accountNumber: 1234,
avatarUrl: `https://assets2.rivet.gg/avatars/avatar-${Math.round(Math.random() * 7)}.png`,
avatarUrl: `https://assets.rivet.gg/avatars/avatar-${Math.round(Math.random() * 7)}.png`,
presence: {
updateTs: new Date(0),
status: api.identity.IdentityStatus.ONLINE,
Expand Down
2 changes: 1 addition & 1 deletion webpack.common.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ const MiniCssExtractPlugin = require('mini-css-extract-plugin');
const { execSync } = require('child_process');
const BundleAnalyzerPlugin = require('webpack-bundle-analyzer').BundleAnalyzerPlugin;

if (!process.env.ASSETS_URL) process.env.ASSETS_URL = 'https://assets2.rivet.gg';
if (!process.env.ASSETS_URL) process.env.ASSETS_URL = 'https://assets.rivet.gg';

require('dotenv').config();

Expand Down

0 comments on commit 57234c4

Please sign in to comment.