blob: cbefe1df58ef6db591fbf1f80c308a08a9932254 [file] [log] [blame]
Matteo Scandolod819c922016-12-02 14:06:14 -08001const conf = require('./gulp.conf');
2
3module.exports = function () {
4 return {
5 server: {
6 baseDir: [
7 conf.paths.dist
Matteo Scandolo4e870232017-01-30 13:43:05 -08008 ],
9 routes: {
10 "/spa": "./dist"
11 }
Matteo Scandolod819c922016-12-02 14:06:14 -080012 },
13 open: false
14 };
15};