diff options
Diffstat (limited to 'apps/updatenotification/webpack.js')
-rw-r--r-- | apps/updatenotification/webpack.js | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/apps/updatenotification/webpack.js b/apps/updatenotification/webpack.js new file mode 100644 index 00000000000..cdaad96f4b0 --- /dev/null +++ b/apps/updatenotification/webpack.js @@ -0,0 +1,32 @@ +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' + }, + { + test: /\.js$/, + loader: 'babel-loader', + exclude: /node_modules/ + }, + { + test: /\.s[a|c]ss$/, + loader: 'style-loader!css-loader!sass-loader' + } + ] + }, + plugins: [new VueLoaderPlugin()], + resolve: { + extensions: ['*', '.js', '.vue', '.json'] + } +}; |