sh: line 1: vite: command not found
"scripts": { "copy:slds": "mkdir -p static/@salesforce-ux/design-system && cp -R node_modules/@salesforce-ux/design-system/assets static/@salesforce-ux/design-system", "dev": "vite dev", "build": "vite build", "preview": "vite preview", "start": "serve -s dist", "heroku-postbuild": "npm run build" },The above is my package.json scripts section and below is my vite config
import { sveltekit } from '@sveltejs/kit/vite';
import { defineConfig } from 'vite';
export default defineConfig({
plugins: [sveltekit()]
});Everything is working fine in my local, when I am trying to deploying I am getting the error. The error is very obvious that vite module is missing.