Skip to content

Commit

Permalink
chore: fix app deployment
Browse files Browse the repository at this point in the history
  • Loading branch information
thedaviddias committed Jan 23, 2025
1 parent c4864f2 commit 0faf064
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/app-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,16 +86,16 @@ jobs:
run: pnpm build
env:
NEXT_TELEMETRY_DISABLED: 1
NEXT_PUBLIC_APP_URL: https://demo.linksbase.app

- name: Create .nojekyll
run: |
mkdir -p ./out
touch ./out/.nojekyll
touch ./apps/app/out/.nojekyll
- name: Upload build artifact
uses: actions/[email protected]
with:
path: ./out
path: ./apps/app/out
retention-days: 7

deploy:
Expand Down
2 changes: 1 addition & 1 deletion apps/app/next-env.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
// see https://nextjs.org/docs/basic-features/typescript for more information.
// see https://nextjs.org/docs/app/building-your-application/configuring/typescript for more information.
1 change: 0 additions & 1 deletion apps/app/next.config.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,6 @@ const nextConfig = {
transpilePackages: INTERNAL_PACKAGES,
skipTrailingSlashRedirect: true,
reactStrictMode: true,
basePath: process.env.NEXT_PUBLIC_BASE_PATH,
experimental: {
optimizePackageImports: [
'date-fns',
Expand Down

0 comments on commit 0faf064

Please sign in to comment.