react-yajra-datatable
Version:
React component without dependencies to use with yajra laravel-datatables
26 lines (23 loc) • 754 B
JavaScript
const path = require('path');
const firenpmWeb = (name) => path.resolve('./node_modules/firenpm.web/' + name + '.js');
module.exports = {
entry: './demo/index.js',
output: {
filename: 'bundle.js',
path: './demo',
publicPath: 'http://localhost:8080/'
},
devtool: 'inline-source-map',
devServer: {
contentBase: 'demo',
inline: true
},
module: {
loaders: [
{ test: /\.js$/, loader: firenpmWeb('babel-loader') },
{ test: /\.json$/, loader: firenpmWeb('json-loader') },
{ test: /\.css$/, loaders: [firenpmWeb('style-loader'), firenpmWeb('css-loader')] },
{ test: /\.(png|jpg)$/, loader: firenpmWeb('url-loader') }
]
}
};