mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Merge pull request #4708 from dumbNickname/mjs-support
Change extensions ordering in webpack config
This commit is contained in:
commit
e79b3af122
@ -94,7 +94,7 @@ export default ({ configDir, quiet, babelOptions, entries }) => {
|
||||
resolve: {
|
||||
// Since we ship with json-loader always, it's better to move extensions to here
|
||||
// from the default config.
|
||||
extensions: ['.js', '.jsx', '.json', '.mjs'],
|
||||
extensions: ['.mjs', '.js', '.jsx', '.json'],
|
||||
// Add support to NODE_PATH. With this we could avoid relative path imports.
|
||||
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
|
||||
modules: ['node_modules'].concat(nodePaths),
|
||||
|
@ -80,7 +80,7 @@ export default ({ configDir, babelOptions, entries }) => {
|
||||
resolve: {
|
||||
// Since we ship with json-loader always, it's better to move extensions to here
|
||||
// from the default config.
|
||||
extensions: ['.js', '.jsx', '.json', '.mjs'],
|
||||
extensions: ['.mjs', '.js', '.jsx', '.json'],
|
||||
// Add support to NODE_PATH. With this we could avoid relative path imports.
|
||||
// Based on this CRA feature: https://github.com/facebookincubator/create-react-app/issues/253
|
||||
modules: ['node_modules'].concat(nodePaths),
|
||||
|
Loading…
x
Reference in New Issue
Block a user