Skip to content
This repository was archived by the owner on Sep 26, 2023. It is now read-only.

Commit

Permalink
use LNG_BUILD_FOLDER environment variable
Browse files Browse the repository at this point in the history
  • Loading branch information
lewispeel committed Nov 2, 2020
1 parent 878b818 commit b84a00c
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/configs/rollup.es5.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,8 @@ module.exports = {
plugins: [
json(),
url({
limit: 1,
destDir: 'build/static',
limit: 0,
destDir: (process.env.LNG_BUILD_FOLDER || 'build') + '/static',
publicPath: 'static/',
}),
inject({
Expand Down
4 changes: 2 additions & 2 deletions src/configs/rollup.es6.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,8 @@ module.exports = {
plugins: [
json(),
url({
limit: 1,
destDir: 'build/static',
limit: 0,
destDir: (process.env.LNG_BUILD_FOLDER || 'build') + '/static',
publicPath: 'static/',
}),
inject({
Expand Down

0 comments on commit b84a00c

Please sign in to comment.