vite可以打包nodejs的后端项目吗?

pgx2nnw8  于 2023-03-17  发布在  Node.js
关注(0)|答案(1)|浏览(838)

vite可以打包像express或koa这样的后端项目吗?我们如何打包一个后端nodejs项目?

0md85ypi

0md85ypi1#

是的。 checkout https://github.com/axe-me/vite-plugin-node。这里是我的一个项目的配置:

plugins: [
...VitePluginNode({
  adapter: 'fastify',
  appPath: './src/main.ts',
  tsCompiler: 'swc',
  exportName: 'main',
}),

相关问题