mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
cdd5129ef3
* Delete .babelrc * Update package.json * Create next.config.js * Update next.config.js
9 lines
179 B
JavaScript
9 lines
179 B
JavaScript
const path = require('path')
|
|
|
|
module.exports = {
|
|
webpack (config, options) {
|
|
config.resolve.alias['components'] = path.join(__dirname, 'components')
|
|
return config
|
|
}
|
|
}
|