link-stack/apps/leafcutter/next.config.js

21 lines
357 B
JavaScript
Raw Permalink Normal View History

2023-02-13 13:46:56 +00:00
module.exports = {
2023-05-25 12:37:14 +00:00
publicRuntimeConfig: {
2023-06-05 14:48:23 +00:00
embedded: true
2023-05-25 12:37:14 +00:00
},
2023-05-30 09:05:40 +00:00
basePath: "/proxy/leafcutter",
assetPrefix: "/proxy/leafcutter",
2023-02-13 13:46:56 +00:00
i18n: {
locales: ["en", "fr"],
defaultLocale: "en",
},
2023-05-30 09:05:40 +00:00
/* rewrites: async () => ({
2023-02-13 13:46:56 +00:00
fallback: [
{
source: "/:path*",
destination: "/api/proxy/:path*",
},
],
2023-05-30 09:05:40 +00:00
}) */
2023-02-13 13:46:56 +00:00
};