1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-12-01 12:24:28 +01:00
fab-manager/config/webpack/modules/html.js

20 lines
359 B
JavaScript
Raw Normal View History

2020-09-22 14:20:47 +02:00
const path = require('path');
2020-09-09 11:54:49 +02:00
module.exports = {
test: /\.html$/i,
2020-09-22 14:20:47 +02:00
exclude: /node_modules/,
2022-03-16 11:23:58 +01:00
type: 'javascript/auto',
2020-09-22 14:20:47 +02:00
use: [
{
loader: 'ngtemplate-loader',
options: {
relativeTo: path.join(__dirname, '../../../app/frontend/templates'),
requireAngular: true
}
},
{
loader: 'html-loader'
}
]
2020-09-09 11:54:49 +02:00
};