dentalvisitactivity-pack
Version:
Interactive to recreate a pediatric dental visit
35 lines (33 loc) • 789 B
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)$/,
type: 'asset/resource'
},
{
test: /\.(woff|woff2|eot|ttf|otf)$/,
type: 'asset/resource'
}
]
}
};