Skip to content
This repository has been archived by the owner on Aug 7, 2024. It is now read-only.

Commit

Permalink
fix(client): replace browser_url with browser_base_url
Browse files Browse the repository at this point in the history
  • Loading branch information
imduchy committed Nov 5, 2022
1 parent ac51c59 commit a340365
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 8 deletions.
5 changes: 0 additions & 5 deletions apps/api/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -14,14 +14,9 @@ import groups from './routes/groups';
import users from './routes/users';
import cors from 'cors';
import helmet from 'helmet';
// eslint-disable-next-line @typescript-eslint/no-unused-vars
import { v4 as uuidv4 } from 'uuid';
import { SecretClient } from '@azure/keyvault-secrets';
import { DefaultAzureCredential } from '@azure/identity';

// eslint-disable-next-line @typescript-eslint/no-unused-vars
const x = uuidv4();

const app = express();
const MongoStore = connectMongo(session);
const credential = new DefaultAzureCredential();
Expand Down
1 change: 0 additions & 1 deletion apps/api/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
"@types/multer": "^1.4.7",
"@types/node-xlsx": "^0.15.2",
"@types/passport-local": "^1.0.33",
"@types/uuid": "^8.3.4",
"dotenv": "^8.2.0",
"jest": "26.6.3",
"ts-node-dev": "^1.1.1",
Expand Down
4 changes: 2 additions & 2 deletions apps/client/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ export default {
baseURL: 'http://localhost:3003/api',
credentials: true,
},
privateRuntimeConfig: {
publicRuntimeConfig: {
axios: {
baseURL: process.env.BASE_URL,
browserBaseURL: process.env.BROWSER_BASE_URL,
},
},
/*
Expand Down

0 comments on commit a340365

Please sign in to comment.