aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKevin J Hoerr <kjhoerr@protonmail.com>2022-09-07 23:24:54 -0400
committerKevin J Hoerr <kjhoerr@protonmail.com>2025-08-18 11:50:11 -0400
commit5f6acdf1119669c49490eb5b5aefb5eacc472bd2 (patch)
tree1a29d2799b9c2c04ea06dd746b8e8a279dce57c9
parent0eb0594145b1185000a3a4276bcaf28143adf6e1 (diff)
downloadpantry-5f6acdf1119669c49490eb5b5aefb5eacc472bd2.tar.gz
pantry-5f6acdf1119669c49490eb5b5aefb5eacc472bd2.tar.bz2
pantry-5f6acdf1119669c49490eb5b5aefb5eacc472bd2.zip
Fix front-end build when META-INF does not exist
-rw-r--r--package.json2
1 files changed, 1 insertions, 1 deletions
diff --git a/package.json b/package.json
index b2e1583..0a3b50c 100644
--- a/package.json
+++ b/package.json
@@ -1,7 +1,7 @@
{
"name": "pantry",
"scripts": {
- "dev:fe": "nodemon --watch src/conf --watch src/components --watch src/model --watch src/pages --watch src/styles --watch src/util -e ts,tsx,css -x 'APP_ENV=development yarn inject'",
+ "dev:fe": "mkdir -p src/main/resources/META-INF/resources && nodemon --watch src/conf --watch src/components --watch src/model --watch src/pages --watch src/styles --watch src/util -e ts,tsx,css -x 'APP_ENV=development yarn inject'",
"dev:be": "mvn quarkus:dev",
"dev": "npm-run-all --parallel dev:*",
"build": "next build && next export",