Vue Dev Server Proxy no funciona

module.exports = {
  devServer: {
    proxy: {
      "/api/": {
        target: "http://localhost:3000/api/"
      }
    }
  }
};
Restu Wahyu Saputra