diff options
author | Phil Hughes <me@iamphill.com> | 2018-09-28 12:30:02 +0100 |
---|---|---|
committer | Phil Hughes <me@iamphill.com> | 2018-11-26 11:01:58 +0000 |
commit | 1cd97bb64b2a4076433d0ef540d9ca2528312497 (patch) | |
tree | 6a15bc8314513030ca3655ba7f7c54e8c4daa367 /config/webpack.config.js | |
parent | b55aeca25e70cf884c08afaa4b4d84d9ac772c35 (diff) | |
download | gitlab-ce-ide-wasm.tar.gz |
Added textmate grammars to IDEide-wasm
Diffstat (limited to 'config/webpack.config.js')
-rw-r--r-- | config/webpack.config.js | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/config/webpack.config.js b/config/webpack.config.js index 9ecae9790fd..7a6e6a4acd5 100644 --- a/config/webpack.config.js +++ b/config/webpack.config.js @@ -170,6 +170,11 @@ module.exports = { name: '[name].[hash:8].[ext]', }, }, + { + test: /\.wasm$/, + loader: 'file-loader', + type: 'javascript/auto', + }, ], }, |