more frontend work to set backend port

This commit is contained in:
2021-08-25 23:00:18 -04:00
parent 85d6c610f4
commit b9ee7d0790
9 changed files with 1999 additions and 14 deletions

View File

@@ -0,0 +1,12 @@
import ky from 'ky';
const url = 'https://sindresorhus.com';
const backendPort = 3500
const backendAPI = ky.create({
headers: {
rainbow: 'rainbow',
unicorn: 'unicorn'
}
});