mirror of
https://github.com/xlorepdarkhelm/numinar-coding-project.git
synced 2026-09-06 23:08:24 -04:00
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
module.exports = function override(config) {
|
|
// Exclude __tests__ folder from production bundle
|
|
config.module.rules.push({
|
|
test: /\.tsx?$/,
|
|
exclude: [/\/__tests__\//],
|
|
});
|
|
|
|
return config;
|
|
};
|