|
@@ -15,7 +15,7 @@ import chalk from 'chalk';
|
|
|
const app = express();
|
|
|
|
|
|
app.all('*', (req, res, next) => {
|
|
|
- res.header("Access-Control-Allow-Origin", req.headers.Origin || req.headers.origin || 'https://cangdu.org');
|
|
|
+ res.header("Access-Control-Allow-Origin", req.headers.origin || req.headers.referer || '*');
|
|
|
res.header("Access-Control-Allow-Headers", "Content-Type, Authorization, X-Requested-With");
|
|
|
res.header("Access-Control-Allow-Methods", "PUT,POST,GET,DELETE,OPTIONS");
|
|
|
res.header("Access-Control-Allow-Credentials", true); //可以带cookies
|