mirror of
https://github.com/LaCasemate/fab-manager.git
synced 2024-12-02 13:24:20 +01:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
module.exports = {
|
|
test: /\.js$/,
|
|
exclude: /node_modules/,
|
|
use: [
|
|
{
|
|
loader: 'auto-ngtemplate-loader',
|
|
options: {
|
|
pathResolver: (p) => p.replace(/src\/javascript\/.*$/, 'templates')
|
|
}
|
|
}
|
|
]
|
|
};
|