10 lines
221 B
JavaScript
Executable File
10 lines
221 B
JavaScript
Executable File
const withPreconstruct = require('@preconstruct/next');
|
|
|
|
/** @type {import('next').NextConfig} */
|
|
const nextConfig = {
|
|
reactStrictMode: true,
|
|
swcMinify: true,
|
|
};
|
|
|
|
module.exports = withPreconstruct({ ...nextConfig });
|