16 lines
412 B
TypeScript
16 lines
412 B
TypeScript
import type { NextConfig } from "next";
|
|
import path from "node:path";
|
|
|
|
const nextConfig: NextConfig = {
|
|
output: "standalone",
|
|
experimental: {
|
|
optimizePackageImports: ["@mantine/core", "@mantine/hooks"],
|
|
},
|
|
sassOptions: {
|
|
implementation: "sass-embedded",
|
|
additionalData: `@use "${path.join(process.cwd(), "src/_mantine").replace(/\\/g, "/")}" as mantine;`,
|
|
},
|
|
};
|
|
|
|
export default nextConfig;
|