We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 42d813d commit 5bc7308Copy full SHA for 5bc7308
3 files changed
.github/workflows/ci.yml
@@ -88,9 +88,6 @@ jobs:
88
name: Install
89
run: npm ci
90
91
- - name: Install Chrome for Puppeteer
92
- run: npx puppeteer browsers install chrome
93
-
94
- name: Build
95
run: npm run build
96
.github/workflows/deploy.yml
@@ -25,7 +25,7 @@ jobs:
25
uses: actions/cache@v5
26
with:
27
path: ./node_modules
28
- key: v2-${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
+ key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
29
30
- if: steps.cache.outputs.cache-hit != 'true'
31
nuxt.config.js
@@ -75,7 +75,7 @@ export default async () => ({
75
76
buildModules: [
77
'@nuxt/image',
78
- '@nuxtjs/tailwindcss',
+ '@nuxtjs/tailwindcss'
79
],
80
81
modules: [
0 commit comments