2020-10-07 16:37:01 +02:00
|
|
|
const path = require('path');
|
|
|
|
|
2020-10-07 14:25:48 +02:00
|
|
|
module.exports = {
|
2020-10-07 16:37:01 +02:00
|
|
|
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: [
|
|
|
|
{
|
2020-10-07 16:37:01 +02:00
|
|
|
loader: 'ngtemplate-loader',
|
2020-10-07 14:25:48 +02:00
|
|
|
options: {
|
2020-10-07 16:37:01 +02:00
|
|
|
relativeTo: path.join(__dirname, '../../../node_modules/angular-ui-tour/app/templates'),
|
|
|
|
requireAngular: true
|
2020-10-07 14:25:48 +02:00
|
|
|
}
|
2020-10-07 16:37:01 +02:00
|
|
|
},
|
|
|
|
{
|
|
|
|
loader: 'html-loader'
|
2020-10-07 14:25:48 +02:00
|
|
|
}
|
|
|
|
]
|
|
|
|
};
|