diff options
Diffstat (limited to 'src/web-routes.js')
-rw-r--r-- | src/web-routes.js | 16 |
1 files changed, 13 insertions, 3 deletions
diff --git a/src/web-routes.js b/src/web-routes.js index efd86ca1..619d5c62 100644 --- a/src/web-routes.js +++ b/src/web-routes.js @@ -16,13 +16,23 @@ function getNodeDependencyRootPath(dependencyName) { export const stationaryCodeRoutes = [ { - from: path.join(codeSrcPath, 'static'), - to: ['static.root'], + from: path.join(codeSrcPath, 'static', 'css'), + to: ['staticCSS.root'], + }, + + { + from: path.join(codeSrcPath, 'static', 'js'), + to: ['staticJS.root'], + }, + + { + from: path.join(codeSrcPath, 'static', 'misc'), + to: ['staticMisc.root'], }, { from: path.join(codeSrcPath, 'util'), - to: ['util.root'], + to: ['staticSharedUtil.root'], }, ]; |