Skip to content
This repository has been archived by the owner on Oct 10, 2024. It is now read-only.

Commit

Permalink
Fixed text! paths in requirejs
Browse files Browse the repository at this point in the history
  • Loading branch information
brollb committed May 13, 2015
1 parent bfc0041 commit 10e34c4
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions src/client/js/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,15 +6,18 @@ $.material.init();

// Set up require
require.config({
baseDir: '..',
paths: {
shake: './lib/shake',
dot: './lib/doT.min',
lodash: './lib/lodash.min',
async: './lib/async'
async: './lib/async',

html: '../html/'
},
map: {
'*': {
'text': './lib/require-text/text'
'text': 'lib/require-text/text'
}
}
});
Expand Down

0 comments on commit 10e34c4

Please sign in to comment.