1
0
Fork 0
mirror of https://gitlab.com/bramw/baserow.git synced 2025-04-16 18:07:47 +00:00
bramw_baserow/web-frontend/webpack/config.js
2019-02-15 14:52:44 +01:00

16 lines
388 B
JavaScript
Executable file

const path = require('path');
const config = {
'entry': path.join(__dirname, '../src'),
'output': path.join(__dirname, '../public'),
'dist': path.join(__dirname, '../_build'),
'host': '0.0.0.0',
'port': 8080,
'jsFilename': './baserow.js',
'cssFilename': './baserow.css',
'sourceMaps': true,
'devtool': 'inline-source-map'
};
// Export config
module.exports = config;