Код :
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Document</title>
</head>
<body>
<h1><Title></Title></h1>
<script src="./index.js"></script>
</body>
</html>
index.js
import str from './index2'
console.log(str)
index2.js
const str = "Hello"
export default str
Все файлы в одной папке
Но в консоли есть ошибка : "Uncaught SyntaxError: Cannot use import statement outside a module"
И если задать type="module" тегу script :"Access to script at '/index.js' from origin 'null' has been blocked by CORS policy: Cross origin requests are only supported for protocol schemes: http, data, chrome, chrome-extension, chrome-untrusted, https."
Как сделать так чтоб в консоли выводилась импортированная строка ?