6 lines
68 B
Bash
6 lines
68 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
rm -rf dist/*
|
||
|
yarn run build
|
||
|
|
||
|
mv dist ../../public/static
|