netclock/webpack.common.js
Armin Friedl 19c9e720e7
All checks were successful
continuous-integration/drone/push Build is passing
Prepare worldclock, no trailing / for blueprint roots
If specifying a blueprint with route "/", this will result
in flask redirecting to a request to `http://example.com/blueprint`
to `http://example.com/blueprint/`. This we don't want.
2020-09-14 21:13:25 +02:00

34 lines
984 B
JavaScript

const { CleanWebpackPlugin } = require('clean-webpack-plugin');
const path = require('path');
module.exports = {
entry: {
netclock: './js/netclock.js',
countdown_create: './countdown/templates/countdown/create.js',
countdown_view: './countdown/templates/countdown/view.js',
countdown_created: './countdown/templates/countdown/created.js',
worldclock_create: './worldclock/templates/worldclock/create.js'
},
plugins: [
new CleanWebpackPlugin()
],
output: {
filename: '[name].bundle.js',
path: path.resolve(__dirname, 'static', 'dist')
},
module: {
rules: [{
test: /\.s[ac]ss$/i,
use: [
// Creates `style` nodes from JS strings
'style-loader',
// Translates CSS into CommonJS
'css-loader',
// Compiles Sass to CSS
'sass-loader',
]
}]
}
};