fix: 构建前删除 package-lock.json,让 Windows 重新解析 tailwindcss 原生绑定
Some checks are pending
Build Windows Installer / build-windows (push) Waiting to run

This commit is contained in:
MikiVL 2026-05-07 01:04:27 +08:00
parent ec105b3828
commit df2488c653

View File

@ -46,7 +46,9 @@ jobs:
node-version: "18"
- name: Install Node dependencies
run: npm install
run: |
Remove-Item package-lock.json -ErrorAction SilentlyContinue
npm install
- name: Build renderer
run: npx vite build --config vite.config.mjs