diff options
Diffstat (limited to 'apps/accessibility/webpack.js')
-rw-r--r-- | apps/accessibility/webpack.js | 22 |
1 files changed, 2 insertions, 20 deletions
diff --git a/apps/accessibility/webpack.js b/apps/accessibility/webpack.js index 8d4695ed7d8..ddcb85d3441 100644 --- a/apps/accessibility/webpack.js +++ b/apps/accessibility/webpack.js @@ -1,5 +1,4 @@ -const path = require('path'); -const { VueLoaderPlugin } = require('vue-loader'); +const path = require('path') module.exports = { entry: path.join(__dirname, 'src', 'main.js'), @@ -7,22 +6,5 @@ module.exports = { path: path.resolve(__dirname, './js'), publicPath: '/js/', filename: 'accessibility.js' - }, - module: { - rules: [ - { - test: /\.vue$/, - loader: 'vue-loader' - }, - { - test: /\.js$/, - loader: 'babel-loader', - exclude: /node_modules/ - } - ] - }, - plugins: [new VueLoaderPlugin()], - resolve: { - extensions: ['*', '.js', '.vue', '.json'] } -}; +} |