diff options
author | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-03-17 08:25:31 +0100 |
---|---|---|
committer | John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com> | 2021-03-17 13:03:38 +0100 |
commit | 5d9bb5e2471b5266496a1bfd0af11e766de917c2 (patch) | |
tree | 0b7d4017098209ac3b6e4df3938257d91b9d8194 /apps/weather_status | |
parent | fb183b457c2befbc3ab04b0cb070aa1e300443c6 (diff) | |
download | nextcloud-server-5d9bb5e2471b5266496a1bfd0af11e766de917c2.tar.gz nextcloud-server-5d9bb5e2471b5266496a1bfd0af11e766de917c2.zip |
Lint fix
Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
Diffstat (limited to 'apps/weather_status')
-rw-r--r-- | apps/weather_status/webpack.js | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/apps/weather_status/webpack.js b/apps/weather_status/webpack.js index 500f1d4616c..30c833bca7c 100644 --- a/apps/weather_status/webpack.js +++ b/apps/weather_status/webpack.js @@ -2,25 +2,25 @@ const path = require('path') module.exports = { entry: { - 'weather-status': path.join(__dirname, 'src', 'weather-status') + 'weather-status': path.join(__dirname, 'src', 'weather-status'), }, output: { path: path.resolve(__dirname, './js'), publicPath: '/js/', filename: '[name].js?v=[chunkhash]', - jsonpFunction: 'webpackJsonpWeatherStatus' + jsonpFunction: 'webpackJsonpWeatherStatus', }, optimization: { splitChunks: { automaticNameDelimiter: '-', - } + }, }, module: { - rules: [ - { - test: /\.(png|jpg|gif|svg|woff|woff2|eot|ttf)$/, - loader: 'url-loader', - }, - ], + rules: [ + { + test: /\.(png|jpg|gif|svg|woff|woff2|eot|ttf)$/, + loader: 'url-loader', + }, + ], }, } |