mirror of
https://github.com/RoboSats/robosats.git
synced 2025-09-05 12:04:09 +00:00
Another try
This commit is contained in:
1
.github/workflows/frontend-build.yml
vendored
1
.github/workflows/frontend-build.yml
vendored
@ -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'
|
||||
|
@ -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'),
|
||||
},
|
||||
],
|
||||
}),
|
||||
|
Reference in New Issue
Block a user