Skip to content

Commit a2840cf

Browse files
committed
fix: upgraded node version to avoid unsupported engine error
1 parent 7a57df6 commit a2840cf

File tree

3 files changed

+4
-3
lines changed

3 files changed

+4
-3
lines changed

resources/ops/docker/app/app.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ RUN composer install
5252

5353
RUN composer dump-autoload -o
5454

55-
FROM node:15.5-alpine AS assets-build
55+
FROM node:22-alpine AS assets-build
5656

5757
WORKDIR /var/www/html
5858

resources/ops/docker/nginx/nginx.dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM node:15.5-alpine AS assets-build
1+
FROM node:22-alpine AS assets-build
22

33
WORKDIR /var/www/html
44

resources/views/app.blade.php

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,8 @@
88
<title inertia>{{ config('app.name', 'nmrXiv') }}</title>
99

1010
<!-- Fonts -->
11-
<!-- <link rel="stylesheet" href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700&display=swap"> -->
11+
<link rel="preconnect" href="https://fonts.bunny.net">
12+
<link href="https://fonts.bunny.net/css?family=figtree:400,500,600&display=swap" rel="stylesheet" />
1213

1314
<!-- Styles / Scripts -->
1415
@vite(['resources/js/app.js'])

0 commit comments

Comments
 (0)