1
0
mirror of https://github.com/ianstormtaylor/slate.git synced 2025-08-10 17:24:02 +02:00

Exclude checking source maps for next and @next

This commit is contained in:
Sunny Hirai
2021-02-16 18:03:24 -08:00
parent 5201a1856f
commit 6d66d87f67

View File

@@ -7,6 +7,7 @@ module.exports = {
test: /\.js$/, test: /\.js$/,
use: ['source-map-loader'], use: ['source-map-loader'],
enforce: 'pre', enforce: 'pre',
exclude: [/node_modules\/@next/, /node_modules\/next/],
}) })
return config return config
}, },