We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4edb69c commit 3955f44Copy full SHA for 3955f44
apps/repl/ember-cli-build.js
@@ -115,6 +115,14 @@ module.exports = async function (defaults) {
115
// Causes app to not boot
116
// chunkFormat: 'module',
117
// },
118
+ module: {
119
+ rules: [
120
+ {
121
+ test: /\.wasm$/,
122
+ type: "asset",
123
+ },
124
+ ]
125
126
resolve: {
127
alias: {
128
path: 'path-browserify',
packages/ember-repl/addon/src/browser/gjs.ts
@@ -10,7 +10,10 @@ import type { Babel } from './types';
10
11
const compiler = importSync('ember-source/dist/ember-template-compiler.js');
12
13
-import { Preprocessor } from 'content-tag';
+import init, { Preprocessor } from 'content-tag';
14
+
15
16
+await init();
17
18
const processor = new Preprocessor();
19
0 commit comments