mirror of
https://github.com/RoboSats/robosats.git
synced 2025-09-05 20:04:14 +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
|
npm install
|
||||||
- name: 'Build'
|
- name: 'Build'
|
||||||
run: |
|
run: |
|
||||||
|
export NODE_OPTIONS="--max-old-space-size=4096"
|
||||||
cd frontend
|
cd frontend
|
||||||
npm run build
|
npm run build
|
||||||
- name: 'Archive Django Static Build Results'
|
- name: 'Archive Django Static Build Results'
|
||||||
|
@ -134,17 +134,17 @@ const configNode = (env: any, argv: { mode: string }): Configuration => {
|
|||||||
// Copy to nodeapp
|
// Copy to nodeapp
|
||||||
{
|
{
|
||||||
from: path.resolve(__dirname, 'static'),
|
from: path.resolve(__dirname, 'static'),
|
||||||
to: path.resolve(__dirname, '../../../nodeapp/static'),
|
to: path.resolve(__dirname, '../nodeapp/static'),
|
||||||
},
|
},
|
||||||
// Copy to desktopApp
|
// Copy to desktopApp
|
||||||
{
|
{
|
||||||
from: path.resolve(__dirname, 'static'),
|
from: path.resolve(__dirname, 'static'),
|
||||||
to: path.resolve(__dirname, '../../../desktopApp/static'),
|
to: path.resolve(__dirname, '../desktopApp/static'),
|
||||||
},
|
},
|
||||||
// Copy to web
|
// Copy to web
|
||||||
{
|
{
|
||||||
from: path.resolve(__dirname, 'static'),
|
from: path.resolve(__dirname, 'static'),
|
||||||
to: path.resolve(__dirname, '../../../web/static'),
|
to: path.resolve(__dirname, '../web/static'),
|
||||||
},
|
},
|
||||||
],
|
],
|
||||||
}),
|
}),
|
||||||
|
Reference in New Issue
Block a user