mirror of
https://github.com/ianstormtaylor/slate.git
synced 2025-02-21 07:32:24 +01:00
15 lines
299 B
JavaScript
15 lines
299 B
JavaScript
const fs = require('fs')
|
|
const path = require('path')
|
|
|
|
module.exports = {
|
|
webpack: config => {
|
|
config.module.rules.push({
|
|
test: /\.js$/,
|
|
use: ['source-map-loader'],
|
|
enforce: 'pre',
|
|
exclude: [/node_modules\/@next/, /node_modules\/next/],
|
|
})
|
|
return config
|
|
},
|
|
}
|