8 lines
115 B
Text
8 lines
115 B
Text
|
|
#!/bin/sh -ex
|
||
|
|
|
||
|
|
# server build
|
||
|
|
npm run rollup -- -c rollup.server.config.js
|
||
|
|
|
||
|
|
# frontend build
|
||
|
|
npm run vite -- build
|