next.config.mjs 385 B

1234567891011121314
  1. /** @type {import('next').NextConfig} */
  2. import createNextIntlPlugin from 'next-intl/plugin';
  3. import path from 'path';
  4. const withNextIntl = createNextIntlPlugin();
  5. /** @type {import('next').NextConfig} */
  6. const nextConfig = {
  7. reactStrictMode: true,
  8. sassOptions: {
  9. prependData: `@import "./src/styles/variables.scss";`
  10. }
  11. };
  12. export default withNextIntl(nextConfig);