diff options
author | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:14:58 +0900 |
---|---|---|
committer | Shin'ya Ueoka <ueokande@i-beam.org> | 2017-10-05 20:14:58 +0900 |
commit | 32168a94e07478325a53779513533b76a6ef2c18 (patch) | |
tree | feb1a9fdc8f84e3360298e01abb6c79df5b4d2e4 /webpack.config.js | |
parent | 5ef9a2a60c99f24fe3df7035ae4dca574fc38c68 (diff) |
fix imports in src
Diffstat (limited to 'webpack.config.js')
-rw-r--r-- | webpack.config.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/webpack.config.js b/webpack.config.js index e4d5a17..3d4ef03 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -40,7 +40,7 @@ module.exports = { resolve: { extensions: [ '.js' ], - modules: [path.join(__dirname), 'node_modules'] + modules: [path.join(__dirname, 'src'), 'node_modules'] }, plugins: [ |