diff options
Diffstat (limited to 'bin/webpack')
-rwxr-xr-x | bin/webpack | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/bin/webpack b/bin/webpack index 465832722..008ecb22f 100755 --- a/bin/webpack +++ b/bin/webpack @@ -12,4 +12,8 @@ require "bundler/setup" require "webpacker" require "webpacker/webpack_runner" -Webpacker::WebpackRunner.run(ARGV) + +APP_ROOT = File.expand_path("..", __dir__) +Dir.chdir(APP_ROOT) do + Webpacker::WebpackRunner.run(ARGV) +end |