Another try

This commit is contained in:
koalasat
2025-08-12 13:26:47 +02:00
parent 346278dfc8
commit 827624d0d7
2 changed files with 4 additions and 3 deletions

View File

@ -42,6 +42,7 @@ jobs:
npm install
- name: 'Build'
run: |
export NODE_OPTIONS="--max-old-space-size=4096"
cd frontend
npm run build
- name: 'Archive Django Static Build Results'

View File

@ -134,17 +134,17 @@ const configNode = (env: any, argv: { mode: string }): Configuration => {
// Copy to nodeapp
{
from: path.resolve(__dirname, 'static'),
to: path.resolve(__dirname, '../../../nodeapp/static'),
to: path.resolve(__dirname, '../nodeapp/static'),
},
// Copy to desktopApp
{
from: path.resolve(__dirname, 'static'),
to: path.resolve(__dirname, '../../../desktopApp/static'),
to: path.resolve(__dirname, '../desktopApp/static'),
},
// Copy to web
{
from: path.resolve(__dirname, 'static'),
to: path.resolve(__dirname, '../../../web/static'),
to: path.resolve(__dirname, '../web/static'),
},
],
}),