mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-11-29 10:24:20 +01:00
15 lines
298 B
JavaScript
15 lines
298 B
JavaScript
const path = require('path');
|
|
|
|
module.exports = {
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{
|
|
loader: 'auto-ngtemplate-loader',
|
|
options: {
|
|
pathResolver: (templatePath) => path.join(__dirname, `../../../app/frontend/templates${templatePath}`)
|
|
}
|
|
}
|
|
]
|
|
};
|