nextcloud-server/apps/weather_status/webpack.js

27 lines
491 B
JavaScript

const path = require('path')
module.exports = {
entry: {
'weather-status': path.join(__dirname, 'src', 'weather-status'),
},
output: {
path: path.resolve(__dirname, './js'),
publicPath: '/js/',
filename: '[name].js?v=[chunkhash]',
jsonpFunction: 'webpackJsonpWeatherStatus',
},
optimization: {
splitChunks: {
automaticNameDelimiter: '-',
},
},
module: {
rules: [
{
test: /\.(png|jpg|gif|svg|woff|woff2|eot|ttf)$/,
loader: 'url-loader',
},
],
},
}