web打包目录预览服务
# ✨ Auto-detect
npx nypm install preview-serve
# npm
npm install preview-serve
# yarn
yarn add preview-serve
# pnpm
pnpm install preview-serve
# bun
bun install preview-serve
# deno
deno install preview-serveimport { defineConfig } from 'preview-serve'
export default defineConfig({
/**
* 服务监听地址
*/
hostname: '127.0.0.1',
/**
* 服务监听端口
*/
port: 3000,
/**
* web 打包目录
*/
dist: 'dist',
proxy: {
/**
* 代理配置,详见 [httpxy](https://github.com/unjs/httpxy)
*/
'/gh': {
target: ' https://ungh.cc',
changeOrigin: true,
}
}
})preview-serve --dist distPublished under the MIT license.
Made by @Colourlessglow and community 💛
🤖 auto updated with automd