Files
ag-grid-react-example/webpack.config.examples.js
2017-05-26 11:12:43 +01:00

42 lines
1.0 KiB
JavaScript

const path = require('path');
const SRC_DIR = path.resolve(__dirname, 'src');
module.exports = {
entry: SRC_DIR + "/index.js",
output: {
path: __dirname,
filename: "dist/react-examples.js"
},
module: {
loaders: [
{
test: /\.css$/,
loader: "style!css"
},
{
test: /\.js$|\.jsx$/,
include: SRC_DIR,
loader: 'babel-loader',
query: {
presets: ['react', 'es2015', 'stage-0']
}
},
{
test: /\.(png|jpe?g|gif|svg|woff|woff2|ttf|eot|ico)$/,
loader: 'file?name=[path]/[name].[ext]'
}
]
},
resolve: {
alias: {
"ag-grid-root" : __dirname + "/node_modules/ag-grid"
},
extensions: ['', '.js', '.jsx']
},
devServer: {
historyApiFallback: true,
contentBase: './',
hot: true
}
};