mirror of
https://github.com/reactjs/react.dev.git
synced 2026-02-21 19:31:57 +00:00
* Add copyright script Copied over our copyright script from the react repo. I made a small fix to handle shebangs. * Update copyright on all files Run the script.
70 lines
1.8 KiB
JavaScript
70 lines
1.8 KiB
JavaScript
/**
|
|
* Copyright (c) Meta Platforms, Inc. and affiliates.
|
|
*
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
*/
|
|
|
|
/*
|
|
* Copyright (c) Facebook, Inc. and its affiliates.
|
|
*/
|
|
|
|
/**
|
|
* @type {import('next').NextConfig}
|
|
**/
|
|
const nextConfig = {
|
|
pageExtensions: ['jsx', 'js', 'ts', 'tsx', 'mdx', 'md'],
|
|
reactStrictMode: true,
|
|
experimental: {
|
|
scrollRestoration: true,
|
|
reactCompiler: true,
|
|
},
|
|
env: {},
|
|
webpack: (config, {dev, isServer, ...options}) => {
|
|
if (process.env.ANALYZE) {
|
|
const {BundleAnalyzerPlugin} = require('webpack-bundle-analyzer');
|
|
config.plugins.push(
|
|
new BundleAnalyzerPlugin({
|
|
analyzerMode: 'static',
|
|
reportFilename: options.isServer
|
|
? '../analyze/server.html'
|
|
: './analyze/client.html',
|
|
})
|
|
);
|
|
}
|
|
|
|
// Don't bundle the shim unnecessarily.
|
|
config.resolve.alias['use-sync-external-store/shim'] = 'react';
|
|
|
|
const {IgnorePlugin, NormalModuleReplacementPlugin} = require('webpack');
|
|
config.plugins.push(
|
|
new NormalModuleReplacementPlugin(
|
|
/^raf$/,
|
|
require.resolve('./src/utils/rafShim.js')
|
|
),
|
|
new NormalModuleReplacementPlugin(
|
|
/^process$/,
|
|
require.resolve('./src/utils/processShim.js')
|
|
),
|
|
new IgnorePlugin({
|
|
checkResource(resource, context) {
|
|
if (
|
|
/\/eslint\/lib\/rules$/.test(context) &&
|
|
/\.\/[\w-]+(\.js)?$/.test(resource)
|
|
) {
|
|
// Skips imports of built-in rules that ESLint
|
|
// tries to carry into the bundle by default.
|
|
// We only want the engine and the React rules.
|
|
return true;
|
|
}
|
|
return false;
|
|
},
|
|
})
|
|
);
|
|
|
|
return config;
|
|
},
|
|
};
|
|
|
|
module.exports = nextConfig;
|