File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,16 +52,16 @@ jobs:
5252 #
5353 # You may remove this line if you want to manage the configuration yourself.
5454 static_site_generator : next
55- - name : Restore cache
56- uses : actions/cache@v4
57- with :
58- path : |
59- .next/cache
60- # Generate a new cache whenever packages or source files change.
61- key : ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
62- # If source files changed but packages didn't, rebuild from a prior cache.
63- restore-keys : |
64- ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
55+ # - name: Restore cache
56+ # uses: actions/cache@v4
57+ # with:
58+ # path: |
59+ # .next/cache
60+ # # Generate a new cache whenever packages or source files change.
61+ # key: ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-${{ hashFiles('**.[jt]s', '**.[jt]sx') }}
62+ # # If source files changed but packages didn't, rebuild from a prior cache.
63+ # restore-keys: |
64+ # ${{ runner.os }}-nextjs-${{ hashFiles('**/package-lock.json', '**/yarn.lock') }}-
6565 - name : Install dependencies
6666 run : bun install
6767 - name : Build with Next.js
Original file line number Diff line number Diff line change 11/** @type {import('next').NextConfig } */
22const nextConfig = {
33 output : "export" ,
4- assetPrefix : process . env . ASSET_PREFIX ,
54 basePath : "/brno.python.pizza" ,
65} ;
76module . exports = nextConfig ;
You can’t perform that action at this time.
0 commit comments