2023-02-13 13:46:56 +00:00
|
|
|
module.exports = {
|
2023-05-25 12:37:14 +00:00
|
|
|
publicRuntimeConfig: {
|
|
|
|
|
embedded: Boolean(process.env.LINK_EMBEDDED),
|
|
|
|
|
},
|
2023-02-13 13:46:56 +00:00
|
|
|
i18n: {
|
|
|
|
|
locales: ["en", "fr"],
|
|
|
|
|
defaultLocale: "en",
|
|
|
|
|
},
|
|
|
|
|
|
|
|
|
|
rewrites: async () => ({
|
|
|
|
|
fallback: [
|
|
|
|
|
{
|
|
|
|
|
source: "/:path*",
|
|
|
|
|
destination: "/api/proxy/:path*",
|
|
|
|
|
},
|
|
|
|
|
],
|
|
|
|
|
}),
|
|
|
|
|
};
|