Bladeren bron

Use ES6 module output

For compatibility with top-level await in CX NPM package
Alessandro Pignotti 9 maanden geleden
bovenliggende
commit
4f13791f71
2 gewijzigde bestanden met toevoegingen van 2 en 2 verwijderingen
  1. 1 1
      next.html
  2. 1 1
      rollup.config.js

+ 1 - 1
next.html

@@ -33,7 +33,7 @@
 	<!-- Serviceworker script that adds the COI and CORS headers to the response headers in cases where the server does not support it. -->
 	<script src="serviceWorker.js"></script>
 	<script src="network.js"></script>
-	<script defer src='/build/bundle.js'></script>
+	<script defer src='/build/bundle.js' type='module'></script>
 </head>
 
 <body>

+ 1 - 1
rollup.config.js

@@ -14,7 +14,7 @@ export default {
 	input: 'src/main.js',
 	output: {
 		sourcemap: true,
-		format: 'iife',
+		format: 'esm',
 		name: 'app',
 		file: 'build/bundle.js'
 	},