Cannot Run React App From Twitch Extension

<!doctype html>
<html lang="en">
<head>
    <script src="https://extension-files.twitch.tv/helper/v1/twitch-ext.min.js"></script>
    <meta charset="utf-8"/>
    <link rel="icon" href="/favicon.ico"/>
    <meta name="viewport" content="width=device-width,initial-scale=1"/>
    <meta name="theme-color" content="#000000"/>
    <meta name="description" content="Web site created using create-react-app"/>
    <link rel="apple-touch-icon" href="/logo192.png"/>
    <script src="https://extension-files.twitch.tv/helper/v1/twitch-ext.min.js"></script>
    <link rel="manifest" href="/manifest.json"/>
    <title>React App</title>
    <script defer="defer" src="/static/js/main.ca0d16d5.js"></script>
    <link href="/static/css/main.073c9b0a.css" rel="stylesheet">
</head>
<body>
    <noscript>You need to enable JavaScript to run this app.</noscript>
    <div id="root">
        <h1>Hello</h1>
    </div>
</body>
</html>

I am properly linking the javascript files however It says there was an error trying to load the resource and it says Invalid Extension Version Param, I am just trying to get a basic react app to work first then I can work on querying apis and what not.

I figured it out, I needed to remove the leading / from the file names to get it to work.

Just to answer even though you solved, for others

Extensions are uplaoded to a sub folder on the extensions domain of Twitch.

So your HTML/JS/CSS isn’t at the root of the domain that the files exist upon

I wrote about the domain structure here Twitch Extensions: Part 3 – The Architecture of an Extension – Barry Carlyon