Skip to content

Commit

Permalink
chore(Webpack): webpack can now load mjs files, but we don't want it to
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonc committed Sep 21, 2018
1 parent d056274 commit c36ac47
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions webpack/webpack.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -65,6 +65,12 @@ module.exports = {
],
module: {
rules: [
{
type: "javascript/auto",
test: /\.mjs$/,
include: /node_modules/,
use: []
},
{
test: /\.html$/,
use: {
Expand Down

0 comments on commit c36ac47

Please sign in to comment.