Skip to content

Commit 54dbb78

Browse files
authored
Merge pull request #1032 from AlisProject/ALIS-5534
ALIS-5534 Fix for Edge browser
2 parents 08bceb1 + 5adcfb2 commit 54dbb78

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

app/components/molecules/DefaultHeaderNav.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -206,6 +206,7 @@ $topicCount: 10;
206206
"topic0 topic1 topic2 topic3 topic4 topic5 topic6 topic7 topic8 topic9 topic10";
207207
overflow: scroll;
208208
-webkit-overflow-scrolling: touch;
209+
-ms-overflow-style: none;
209210
210211
&::-webkit-scrollbar {
211212
display: none;

nuxt.config.js

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -147,7 +147,12 @@ module.exports = {
147147
exclude: /(node_modules)/
148148
})
149149
}
150-
}
150+
},
151+
152+
/**
153+
* Edgeブラウザ対応のためeditorプラグインをトランスパイルする
154+
*/
155+
transpile: ['editor']
151156
},
152157
css: [
153158
'~assets/stylesheets/medium-editor.scss',

0 commit comments

Comments
 (0)