Skip to content

Commit

Permalink
chore: not update app host
Browse files Browse the repository at this point in the history
  • Loading branch information
yjl9903 committed Oct 5, 2024
1 parent 415bb5a commit 473b6dd
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@ export const meta: MetaFunction = () => {
};

export const loader = async ({ request, params }: LoaderFunctionArgs) => {
console.log(params.filter);
const filter = safeParseJSON<Collection>(params.filter, { decode: true });
if (filter.result) {
const collection = filter.result;
Expand Down
2 changes: 1 addition & 1 deletion apps/frontend/web/vite.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import Analytics from 'unplugin-analytics/vite';

const KEEPSHARE = 'gv78k1oi';

const APP_HOST = process.env.APP_HOST ?? `garden.test.breadio.wiki`;
const APP_HOST = process.env.APP_HOST ?? `garden.breadio.wiki`;

const SERVER_HOST = process.env.SERVER_HOST;
const SERVER_PORT = process.env.SERVER_PORT;
Expand Down

0 comments on commit 473b6dd

Please sign in to comment.