Workaround for Fragment URLs not allowed with Google Redirect URI

后端 未结 3 1435
野性不改
野性不改 2021-01-13 21:36

I use mac to develop a MEAN stack project. My web pages https://localhost:3000/#/login and https://localhost:3000/#/new work (note that all my page

3条回答
  •  情歌与酒
    2021-01-13 22:34

    In app->init.js enable below mode in config

     $locationProvider.html5Mode({
          enabled: true,
          requireBase: false
        }).hashPrefix('!');
    

提交回复
热议问题