diff --git a/build/webpack.base.config.js b/build/webpack.base.config.js index ab7e6d650..6a8d229c9 100644 --- a/build/webpack.base.config.js +++ b/build/webpack.base.config.js @@ -1,5 +1,4 @@ const path = require('path') -const webpack = require('webpack') const vueConfig = require('./vue-loader.config') module.exports = { diff --git a/build/webpack.client.config.js b/build/webpack.client.config.js index 372d4238c..caeaff7e4 100644 --- a/build/webpack.client.config.js +++ b/build/webpack.client.config.js @@ -26,8 +26,8 @@ if (process.env.NODE_ENV === 'production') { // so they are extracted. vueConfig.loaders = { stylus: ExtractTextPlugin.extract({ - loader: "css-loader!stylus-loader", - fallbackLoader: "vue-style-loader" // <- this is a dep of vue-loader + loader: 'css-loader!stylus-loader', + fallbackLoader: 'vue-style-loader' // <- this is a dep of vue-loader }) } diff --git a/src/store/index.js b/src/store/index.js index 3e34700be..ca0818745 100644 --- a/src/store/index.js +++ b/src/store/index.js @@ -1,6 +1,6 @@ import Vue from 'vue' import Vuex from 'vuex' -import { fetchItem, fetchItems, fetchIdsByType, fetchUser } from './api' +import { fetchItems, fetchIdsByType, fetchUser } from './api' Vue.use(Vuex)