15 lines
266 B
JavaScript
15 lines
266 B
JavaScript
// @ts-check
|
|
|
|
/** @type {import("next").NextConfig} */
|
|
export default {
|
|
env: {
|
|
API_URI: /** @type {string} */ (process.env.API_URI),
|
|
},
|
|
i18n: {
|
|
locales: ["en-US"],
|
|
defaultLocale: "en-US",
|
|
},
|
|
pageExtensions: ["mjs"],
|
|
reactStrictMode: true,
|
|
};
|