在节点v16上我可以很容易地
#/etc/hosts
127.0.0.1 localhost
255.255.255.255 broadcasthost
::1 localhost
127.0.0.1 my-domain.test
字符串
然后通过my-domain.test:{port}
访问站点
在节点18上,这不再起作用,使用相同的vite配置
// vite.config.ts
{
server: {
host: 'localhost',
port: 3003
},
plugins: [vue(), vueJsx()],
resolve: {
alias: {
'@': fileURLToPath(new URL('./src', import.meta.url))
}
}
}
型
有人知道是什么改变了吗
1条答案
按热度按时间im9ewurl1#
只需在vite.config.ts的服务器部分替换host即可
字符串