13 lines
249 B
JavaScript
13 lines
249 B
JavaScript
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
optimizePackageImports: [
|
|
"@mantine/core",
|
|
"@mantine/hooks",
|
|
],
|
|
},
|
|
}
|
|
|
|
export default nextConfig
|