rsnext/examples/with-absolute-imports/next.config.js

9 lines
179 B
JavaScript
Raw Normal View History

const path = require('path')
module.exports = {
webpack (config, options) {
config.resolve.alias['components'] = path.join(__dirname, 'components')
return config
}
}