summaryrefslogtreecommitdiffstats
path: root/apps/oauth2/webpack.js
diff options
context:
space:
mode:
Diffstat (limited to 'apps/oauth2/webpack.js')
-rw-r--r--apps/oauth2/webpack.js34
1 files changed, 6 insertions, 28 deletions
diff --git a/apps/oauth2/webpack.js b/apps/oauth2/webpack.js
index 1242695240c..dfaf0324eed 100644
--- a/apps/oauth2/webpack.js
+++ b/apps/oauth2/webpack.js
@@ -1,32 +1,10 @@
const path = require('path')
-const { VueLoaderPlugin } = require('vue-loader');
module.exports = {
- entry: path.join(__dirname, 'src', 'main.js'),
- output: {
- path: path.resolve(__dirname, './js'),
- publicPath: '/js',
- filename: 'oauth2.js'
- },
- module: {
- rules: [
- {
- test: /\.vue$/,
- loader: 'vue-loader'
- },
- {
- test: /\.css$/,
- use: ['vue-style-loader', 'css-loader']
- },
- ]
- },
- plugins: [
- new VueLoaderPlugin()
- ],
- resolve: {
- alias: {
- 'vue$': 'vue/dist/vue.esm.js'
- },
- extensions: ['*', '.js', '.vue', '.json']
- }
+ entry: path.join(__dirname, 'src', 'main.js'),
+ output: {
+ path: path.resolve(__dirname, './js'),
+ publicPath: '/js',
+ filename: 'oauth2.js'
+ }
}