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/js.js
2022-03-15 09:51:39 +01:00

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}`)
}
}
]
};