Skip to content

Commit 863b4b3

Browse files
author
Ives van Hoorne
committed
Fix preceding slash
1 parent cd103cd commit 863b4b3

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

config/webpack.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ if (__PROD__) {
235235
minimize: true,
236236
debug: false,
237237
}),
238-
new BabiliPlugin(),
238+
// new BabiliPlugin(),
239239
new webpack.optimize.UglifyJsPlugin({
240240
beautify: false,
241241
compress: {

src/app/utils/codemirror/eslint-lint.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1607,7 +1607,7 @@ export default (async function initialize() {
16071607
if (!window.eslint) {
16081608
// Add eslint as script
16091609
const script = document.createElement('script');
1610-
script.setAttribute('src', 'static/js/eslint.3.18.0.js');
1610+
script.setAttribute('src', '/static/js/eslint.3.18.0.js');
16111611
script.setAttribute('async', false);
16121612
document.head.appendChild(script);
16131613
}

0 commit comments

Comments
 (0)