From 785feb1b77aed683a7fceffbac7c0571aaa3190f Mon Sep 17 00:00:00 2001 From: Vincent Fretin Date: Mon, 10 Jun 2024 18:31:45 +0200 Subject: [PATCH] Uncomment core bundle in webpack dev config by default, json utils are in core --- webpack.config.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/webpack.config.js b/webpack.config.js index 6ae4dd9c6..1af214659 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -22,10 +22,10 @@ module.exports = { editor: { import: ['./src/editor/index.js'], filename: '3dstreet-editor.js' - } + }, // react-refresh doesn't work with multiple entry points so we use the production build of aframe-street-component.js in development, // you will need to run `npm run dist` to see your changes or uncomment temporarily the following line and run `npm start` again. - // core: { import: './src/index.js', filename: 'aframe-street-component.js' } + core: { import: './src/index.js', filename: 'aframe-street-component.js' } }, output: { publicPath: '/dist/',