hass-browser_mod/webpack.config.js
2019-11-09 19:58:31 +01:00

11 lines
212 B
JavaScript

const path = require('path');
module.exports = {
entry: './js/main.js',
mode: 'production',
output: {
filename: 'custom_components/browser_mod/browser_mod.js',
path: path.resolve(__dirname)
}
};