dentalruralhealth-pack
Version:
Interactive to simulate a rural health office creation
49 lines (47 loc) • 1.19 kB
JavaScript
/* global module: true */
/* eslint security/detect-unsafe-regex: 0 */
module.exports = {
entry: './test/view-test.js',
output: {
filename: './testBundle.js'
},
module: {
rules: [
{
test: /\.html$/,
use: [
'underscore-template-loader'
]
},
{
test: /\.css$/,
use: [
'style-loader',
'css-loader'
]
},
{
test: /\.(png|svg|jpg|gif)$/,
use: [
{
loader: 'file-loader',
options: {
esModule: false
}
}
]
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
use: [
{
loader: 'file-loader',
options: {
esModule: false
}
}
]
}
]
}
};