From 5f6acdf1119669c49490eb5b5aefb5eacc472bd2 Mon Sep 17 00:00:00 2001 From: Kevin J Hoerr Date: Wed, 7 Sep 2022 23:24:54 -0400 Subject: Fix front-end build when META-INF does not exist --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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", -- cgit