1
0
mirror of https://github.com/LaCasemate/fab-manager.git synced 2024-11-29 10:24:20 +01:00
fab-manager/config/webpack/modules/ui-tour.js

19 lines
371 B
JavaScript
Raw Normal View History

const path = require('path');
2020-10-07 14:25:48 +02:00
module.exports = {
test: /angular-ui-tour\/.*\.html$/i,
2022-03-16 15:15:19 +01:00
type: 'javascript/auto',
2020-10-07 14:25:48 +02:00
use: [
{
loader: 'ngtemplate-loader',
2020-10-07 14:25:48 +02:00
options: {
relativeTo: path.join(__dirname, '../../../node_modules/angular-ui-tour/app/templates'),
requireAngular: true
2020-10-07 14:25:48 +02:00
}
},
{
loader: 'html-loader'
2020-10-07 14:25:48 +02:00
}
]
};