all repos — caroster @ 9ce866648000343d9681be1a31185970c359b52d

[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  typescript: {
13    ignoreBuildErrors: true,
14  },
15};