module.exports = {
devServer: {
proxy: {
'/functions': {
target: 'http://genvue.loc',
changeOrigin: true,
secure: false
}
}
}
}
axios.get('/functions/sheet.php', {params: {page: page}})
.then((response) => {
console.log(response.data);
});