Skip to content

Commit

Permalink
Fixes some listing issue on array
Browse files Browse the repository at this point in the history
  • Loading branch information
hirako2000 committed Aug 19, 2018
1 parent f96e206 commit 5b7a470
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,10 @@ export default {
babel({runtimeHelpers: true}),
commonjs({ignoreGlobal: true}),
resolve(),
...(process.env.FXGL_SERVE ? [ // SERVE
serve({
open: true,
port: 3000,
contentBase: './'
})
] : [])
...(process.env.FXGL_SERVE ? [serve({
open: true,
port: 3000,
contentBase: './'
})] : [])
]
};

0 comments on commit 5b7a470

Please sign in to comment.