mgsmus
serve -s dist komutu uyguladığımda çalışıyordu.
yaptığım hata package.json içerisinde "build-only": "vite build --path=/test/test", verdiğim için olmuş.
hatalı olan
{
"name": "demo1",
"version": "8.1.6",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build --path=/test/test",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
çalışan hali
{
"name": "demo1",
"version": "8.1.6",
"private": true,
"scripts": {
"dev": "vite",
"build": "run-p type-check build-only",
"preview": "vite preview",
"build-only": "vite build",
"type-check": "vue-tsc --noEmit",
"lint": "eslint . --ext .vue,.js,.jsx,.cjs,.mjs,.ts,.tsx,.cts,.mts --fix --ignore-path .gitignore"
},
Teşekkür ederim. => @mgsmus , @emredipi .