报错信息: Failed to load config from xx/.../xx/vite.config.ts error during build: Error: You installed esbuild for another platform than the one you're currently using. This won't work because esbuild is written with native code and needs to install a platform-specific binary executable....
启动项目,npm run dev:mp-wexin 命令行控制台报错 预期结果 预期,不报错,可运行 实际结果 发生异常: Error: Invalid pattern "../../uni-ui/components/z-cell/z-cell.js" for "output.chunkFileNames", patterns can be neither absolute nor relative paths. ...
初步断定为操作系统问题,今天更新了所有win10的更新,居然好使了,匪夷所思!
$ npm run dev 或者 代码语言:javascript 复制 $ yarn create vite-app<project-name>$ cd<project-name>$ yarn $ yarn dev 一个有趣的现象,在vue的官网上面,vite建立项目的方法,直接介绍了,但是cli建立项目的方法却没有直接介绍,而是加了一个不太明显的连接,害得我都没看到。 记得以前是在官网里直接介绍c...
"dev": "vite":启动开发服务器,用于在开发环境下运行项目。 我们前面通过npm run dev就是在这儿配置的 "build": "vue-tsc && vite build":我们使用TypeScript ,需要将 TypeScript 代码编译为 JavaScript才能运行 "dependencies":列出了项目的生产环境依赖项。