summaryrefslogtreecommitdiff
path: root/webpackBaseConfig.js
diff options
context:
space:
mode:
Diffstat (limited to 'webpackBaseConfig.js')
-rw-r--r--webpackBaseConfig.js8
1 files changed, 1 insertions, 7 deletions
diff --git a/webpackBaseConfig.js b/webpackBaseConfig.js
index e618bffd..210001b1 100644
--- a/webpackBaseConfig.js
+++ b/webpackBaseConfig.js
@@ -338,7 +338,7 @@ module.exports = {
path.resolve(__dirname, 'src'),
path.resolve(__dirname, 'node_modules')
],
- extensions: ["", ".js", ".vue"],
+ extensions: ["", ".js"],
alias: {
codemirror: path.join(__dirname, 'node_modules/codemirror/codemirror.min.js'),
inlineAttachment: path.join(__dirname, 'public/vendor/inlineAttachment/inline-attachment.js'),
@@ -373,12 +373,6 @@ module.exports = {
test: /\.json$/,
loader: 'json-loader'
}, {
- test: /\.vue$/,
- loader: 'vue',
- options: {
- // vue-loader options go here
- }
- }, {
test: /\.js$/,
loader: 'babel',
exclude: [/node_modules/, /public\/vendor/]