all repos — caroster @ 62dba9246686f50004e12bc33dd33073fd58ba45

[Octree] Group carpool to your event https://caroster.io

frontend/next.config.js (view raw)

 1const {STRAPI_URL = 'http://localhost:1337'} = process.env;
 2
 3module.exports = {
 4  async rewrites() {
 5    return [
 6      {
 7        source: '/graphql',
 8        destination: `${STRAPI_URL}/graphql`,
 9      },
10    ];
11  },
12  eslint: {
13    ignoreDuringBuilds: true,
14  },
15  typescript: {
16    ignoreBuildErrors: true,
17  },
18};