This repository has been archived on 2025-09-03. You can view files and clone it, but cannot push or open issues or pull requests.
Files
web-old/next.config.ts
2024-10-27 11:25:21 +01:00

10 lines
170 B
TypeScript

import type { NextConfig } from "next";
const nextConfig: NextConfig = {
sassOptions: {
silenceDeprecations: ['legacy-js-api'],
}
};
export default nextConfig;