Fix variable being exported

This commit is contained in:
Nathan Bierema 2023-09-15 22:07:22 -04:00
parent 84812bbae1
commit 2372a885b1
2 changed files with 2 additions and 1 deletions

View File

@ -14,7 +14,7 @@ await esbuild.build({
define: {
'process.env.NODE_ENV': prod ? '"production"' : '"development"',
},
entryPoints: ['src/index.tsx'],
entryPoints: ['src/ReduxDevToolsApp.js'],
loader: {
'.woff2': 'dataurl',
},

View File

@ -0,0 +1 @@
module.exports = require('./index').Root;