fix: fix npm script for newer version of node

This commit is contained in:
DCsunset 2023-02-09 23:13:38 -05:00
parent 80df2663eb
commit c6dfe5218e

View file

@ -3,11 +3,11 @@
"version": "1.0.0",
"private": true,
"scripts": {
"dev": "nuxt",
"build": "nuxt-ts build",
"start": "nuxt-ts start",
"export": "nuxt-ts export",
"serve": "nuxt-ts serve",
"dev": "NODE_OPTIONS=--openssl-legacy-provider nuxt",
"build": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts build",
"start": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts start",
"export": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts export",
"serve": "NODE_OPTIONS=--openssl-legacy-provider nuxt-ts serve",
"lint": "eslint --fix --ext .ts,.js,.vue ."
},
"dependencies": {