From 968fcc490d273799a7dfcafcfbe3af537cf10180 Mon Sep 17 00:00:00 2001 From: Vitaly Takmazov Date: Tue, 8 Nov 2022 01:57:09 +0300 Subject: Build js and css with ssr --- vnext/package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'vnext') diff --git a/vnext/package.json b/vnext/package.json index 02efbef3..a9a38343 100644 --- a/vnext/package.json +++ b/vnext/package.json @@ -7,8 +7,8 @@ "build:css": "postcss --verbose --map style.css.map src/index.css -d public/", "build:js": "esbuild src/index.js --bundle --minify --target=safari11 --loader:.js=jsx --loader:.png=file --loader:.svg=file --outdir=public", "build": "cross-env NODE_ENV=production concurrently \"npm run build:css\" \"npm run build:js\"", - "build:ssr": "esbuild --bundle --sourcemap --keep-names --platform=node --target=node18 --loader:.js=jsx --loader:.png=file --loader:.svg=file --outfile=public/server.js server/index.js", - "start-ssr": "npm run build && npm run build:ssr && cross-env DEBUG=http node public/server.js", + "build:ssr": "npm run build && esbuild --bundle --sourcemap --keep-names --platform=node --target=node18 --loader:.js=jsx --loader:.png=file --loader:.svg=file --outfile=public/server.js server/index.js", + "start-ssr": "npm run build:ssr && cross-env DEBUG=http node public/server.js", "start": "concurrently \"npm run build:js -- --watch\" \"npm run build:css -- -w\" \"live-server -V --entry-file=index.html public/\"", "lint": "eslint src/**/*.js" }, -- cgit v1.2.3