diff options
Diffstat (limited to 'apps/updatenotification/webpack.common.js')
-rw-r--r-- | apps/updatenotification/webpack.common.js | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/apps/updatenotification/webpack.common.js b/apps/updatenotification/webpack.common.js new file mode 100644 index 00000000000..7d2bbfae74e --- /dev/null +++ b/apps/updatenotification/webpack.common.js @@ -0,0 +1,28 @@ +const path = require('path') +const { VueLoaderPlugin } = require('vue-loader'); + +module.exports = { + entry: path.join(__dirname, 'src', 'init.js'), + output: { + path: path.resolve(__dirname, './js'), + publicPath: '/js/', + filename: 'updatenotification.js' + }, + module: { + rules: [ + { + test: /\.vue$/, + loader: 'vue-loader', + } + ] + }, + plugins: [ + new VueLoaderPlugin() + ], + resolve: { + alias: { + 'vue$': 'vue/dist/vue.esm.js' + }, + extensions: ['*', '.js', '.vue', '.json'] + } +} |