Next.js - webpack别名组件文件夹不起作用

时间:2017-05-24 14:33:40

标签: javascript reactjs webpack next.js

我正按照文档中的建议扩展next.js webpack配置。

const path = require('path')

module.exports = {
  webpack: (config, { dev }) => {
    config.resolve = {
      alias: {
        Templates: path.resolve(__dirname, 'templates/'),
        Components: path.resolve(__dirname, 'components/')
      }
    }
    return config
  }
}

我想让我的导入工作如下:

import Template from 'Templates/Base'
import Input from 'Components/Input'

我在配置中做错了什么因为我收到错误,例如:

  

无法找到模块'组件/标题'

我正在构建我的目录:

.next
.storybook
components
|_ Header
|__ index.js
|_ Input
|__ index.js
templates
|_ Base
|__ index.js
pages
|_ index.js
node_modules
containers
stories
...

2 个答案:

答案 0 :(得分:1)

不需要编辑webpack文件,而是需要使用以下内容创建.babelrc文件:

{
  "plugins": [
    ["module-alias", [
      { "src": "./components", "expose": "Components" },
      { "src": "./containers", "expose": "Containers" },
      { "src": "./templates", "expose": "Templates" }
    ]]
  ],
  "presets": [
    "es2015",
    "next/babel"
  ]
}

这样我们扩展了Next.js .babelrc配置,它也适用于服务器端。

答案 1 :(得分:0)

const path = require("path");

    module.exports = {

        webpack: function(config, { dev }) {

            config.resolve.alias = {
                Templates: path.resolve(__dirname, "templates/"),
                Components: path.resolve(__dirname, "components/")
            };

        return config;
        }
    };