corrected #32
Loading…
Reference in New Issue
Block a user
No description provided.
Delete Branch "eecliptica"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
corrected
@ -0,0 +1,145 @@
const { exec } = require('child_process');
exec('npm list axios', (err, stdout, stderr) => {
Надо установить axios как обычный пакет package.json
@ -0,0 +23,4 @@
const cors = require('cors');
const CONFIG = require('./config');
plantsRouter.use(cors());
На сервере cors устанавливаются в одном месте,
В нашем случае они уже установлены https://git.bro-js.ru/bro-students/multy-stub/src/branch/master/server/index.js#L15
Здесь надо убрать, чтобы не конфликтовало
@ -0,0 +18,4 @@
function startApp() {
const express = require('express');
const axios = require('axios');
const FormData = require('form-data');
Данная библиотека не установлена, импорт не будет работать.
Но это и не надо, т.к. FormData есть в nodejs
Pull request closed