sarif-web-component/webpack.config.js

19 строки
373 B
JavaScript
Исходник Обычный вид История

const path = require('path')
const common = require('./webpack.config.common')
module.exports = {
...common,
mode: 'development',
entry: './index.tsx',
2020-01-09 02:39:45 +03:00
output: {
path: path.join(__dirname, 'dist'),
filename: 'index.js',
},
devServer : {
2020-01-10 03:00:03 +03:00
publicPath: '/dist',
//https: true,
//host: '0.0.0.0', // Necessary to server outside localhost
stats: 'none',
},
}