我从命令行运行grunt serve
,我可以通过localhost:9000访问服务器。
如何配置grunt-serve在启动时加载默认文件?
答案 0 :(得分:0)
但是,您可以在文件'' Gruntfile.js''中更改服务器的地址和端口。
就在这里
// The actual grunt server settings
connect: {
options: {
port: 80,
// Change this to '0.0.0.0' to access the server from outside.
hostname: 'localhost',
livereload: 35729
},