1
0
mirror of https://github.com/keeweb/keeweb.git synced 2024-06-27 07:45:08 +02:00
keeweb/webpack.config.js
2019-09-16 18:18:51 +02:00

19 lines
574 B
JavaScript

// This file is here for smart IDE's who configure the resolve rules based on webpack.config.js
// This config is never used for building. The real thing is in build/webpack.config.js
const path = require('path');
module.exports = {
resolve: {
modules: [
path.join(__dirname, 'app/scripts'),
path.join(__dirname, 'app/styles'),
path.join(__dirname, 'app/resources'),
path.join(__dirname, 'node_modules')
],
alias: {
templates: path.join(__dirname, 'app/templates')
}
}
};