diff --git a/app/react-tic-tac-toe/craco.config.js b/app/react-tic-tac-toe/craco.config.js index 21d06b5..65b3bd4 100644 --- a/app/react-tic-tac-toe/craco.config.js +++ b/app/react-tic-tac-toe/craco.config.js @@ -16,6 +16,11 @@ module.exports = { vm: false, }; + webpackConfig.output = { + ...webpackConfig.output, + publicPath: '/', + }; + // Add Buffer global if it's missing webpackConfig.plugins = (webpackConfig.plugins || []).concat( new webpack.ProvidePlugin({ diff --git a/app/react-tic-tac-toe/package.json b/app/react-tic-tac-toe/package.json index 28a0d95..04d561c 100644 --- a/app/react-tic-tac-toe/package.json +++ b/app/react-tic-tac-toe/package.json @@ -1,5 +1,5 @@ { - "homepage": "http://youcefhmd.github.io/TIC-TAC-TOE-GAME", + "homepage": "https://github.com/magicblock-labs/bolt-tic-tac-toe", "name": "tic-tac-toe-game", "version": "0.1.0", "private": true,