We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8d5e3e6 commit 0c961eeCopy full SHA for 0c961ee
bin/setup.js
@@ -128,7 +128,7 @@ function copyTypeScriptFiles() {
128
shell.cp('bin/typescript/App.test.js', 'src/components/App.test.js');
129
shell.cp(
130
'bin/typescript/jest.config.js',
131
- 'src/components/jest.config.js',
+ 'jest.config.js',
132
);
133
shell.cp('bin/typescript/index.tsx', 'src/index.tsx');
134
resolve();
bin/typescript/webpack.prod.ts
@@ -11,7 +11,7 @@ const config: webpack.Configuration = {
11
mode: "production",
12
entry: "./src/index.tsx",
13
output: {
14
- path: path.resolve(__dirname, "dist"),
+ path: path.resolve(__dirname, "public"),
15
filename: "bundle.js"
16
},
17
resolve: {
0 commit comments