Skip to content

Commit

Permalink
fix: Repair frontend build.
Browse files Browse the repository at this point in the history
Frontend wasn't builded properly due to the bug introduced in here vuejs/vue-cli#3407 (comment).
  • Loading branch information
tcibinan committed Feb 4, 2019
1 parent 7ab5b62 commit 9c7a850
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion frontend/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ buildscript {

apply plugin: 'kotlin-platform-js'
apply plugin: 'org.jetbrains.kotlin.frontend'
//apply plugin: 'kotlin-dce-js'
apply plugin: 'kotlin-dce-js'

repositories {
mavenCentral()
Expand Down Expand Up @@ -53,6 +53,10 @@ kotlinFrontend {
dependency('react-notifications', '1.4.3')
dependency('url-loader', '1.1.1')
dependency('string-replace-loader', '2.1.1')

// Temporary workaround for the bug introduced in here
// https://github.com/vuejs/vue-cli/issues/3407#issuecomment-459985313
dependency('terser', '3.14')
}

webpackBundle {
Expand Down

0 comments on commit 9c7a850

Please sign in to comment.