react-fullpage/webpack.config.dev.js

13 строки
321 B
JavaScript
Исходник Постоянная ссылка Обычный вид История

const merge = require('webpack-merge');
const webpackConfig = require('./webpack.config');
const path = require('path');
module.exports = merge(webpackConfig, {
2018-07-13 18:32:24 +03:00
devtool: 'inline-source-map',
output: {
pathinfo: true,
filename: '[name].js',
path: path.resolve(__dirname, './examples/react/dist')
},
});