This commit is contained in:
antelle 2019-01-02 21:18:06 +01:00
parent 9da3ca872c
commit 55948a1fa7
1 changed files with 5 additions and 4 deletions

View File

@ -132,9 +132,9 @@ module.exports = function(grunt) {
}
};
let webpackDevConfig = Object.assign({}, webpackConfig, {
resolve:
alias = {
const webpackDevConfig = Object.assign({}, webpackConfig, {
resolve: {
alias: {
backbone: 'backbone/backbone.js',
underscore: 'underscore/underscore.js',
_: 'underscore/underscore.js',
@ -149,7 +149,8 @@ module.exports = function(grunt) {
'argon2-wasm': 'argon2-browser/dist/argon2.wasm',
templates: path.join(__dirname, 'app/templates')
}
})
}
});
grunt.initConfig({
gitinfo: {